Hi all,
I've been scratching my head on this for a while and I can't resolve why the filtering I do on a sheet/report is not matching my formula on a sheet (upon which the report is based on). Here it goes:
I have an intake sheet for my projects that when a PM creates a project via Control Centre, it spits out the expected output in a portfolio summary sheet. From that portfolio summary sheet, I created a report to list all my active projects (In Progress, Not Started) based on a specific service line. From there, I can get a value ("X").
On that same sheet (portfolio summary), I can create a simple filter on the Project Status and Service Line and match the count; works great as a validation tool. Now, when I create a sheet summary field (for later use as a widget in a dashboard) on that portfolio summary sheet, based on the same criteria, my counts don't match. This is the formula I've used:
=COUNTIFS([Project Status]:[Project Status], OR(@cell = "In Progress", @cell = "Not Started"), [Service Line]:[Service Line], "ABC")
In that Service Line column, I have 4 distinct options a user can select. It is a multi-select (not single-select) drop down for reference.
I've even morphed my formula to be:
=COUNTIFS([Service Line]:[Service Line], CONTAINS("ABC", [Service Line]:[Service Line]))
In fact, when I use either of these formulas, I just get a value of zero (when I certainly expect a larger number).
I take my counts from the portfolio summary sheet and my reports as an accurate count and can't figure out why the formulas don't work. Any advice? Thanks in advance!