As the title suggests, I am trying to determine the number of Active Projects, based on status, on a monthly basis.
I am not basing my logical expression based on a date criteria in a cell; I simply want to see:
- Active Projects (based on a status of: Not Started, In Progress, On Hold)
- Jan 01 to Jan 31 (as an example; would be doing this for every month of the year in separate cells)
This is what I have but I am missing the date element:
=COUNTIFS({PS - Project Status}, OR(@cell = "Not Started", @cell = "In Progress", @cell = "On Hold"))
Many thanks in advance!