Hello!
I have a sheet that lists grant applications. Each row is a different application, and contains information about application due date (formatted as Date), application status (a drop down list), and many other things. I'd like to be able to automatically report on the number of in progress, pending, awarded, and unsuccessful applications during a given fiscal year. There are numerous reasons for an application to have been unsuccessful. All of the formulas that I'm using that refer to the drop down list are reporting a "0" count, which is far off. Can someone help me troubleshoot why this wouldn't be working?
For In Progress:
=COUNTIFS([Application Due Date]@row, >=DATE(2021, 7, 1), [Application Due Date]@row, <=DATE(2022, 6, 30), [Status/ Outcome]@row, "in progress")
For Pending:
=COUNTIFS([Application Due Date]@row, >=DATE(2021, 7, 1), [Application Due Date]@row, <=DATE(2022, 6, 30), [Status/ Outcome]@row, "pending")
For Not Funded:
=COUNTIFS([Application Due Date]@row, >=DATE(2021, 7, 1), [Application Due Date]@row, <=DATE(2022, 6, 30), [Status/ Outcome]@row, OR(@cell = "not funded", @cell = "not approved", @cell = "rejected", @cell = "not discussed"))