I am hoping to get some help with a formula. I need to count based on multiple columns in a sheet, and only certain values in each of those columns. in the below example counting number of Demand for RN (staff type), and for only early start times, for Today().
This is what I have so far, I am thinking the multiple OR() statements may be causing this to return as count of "0", but I know I have rows that meet this criteria:
=COUNTIFS({Intake - Master Sheet (V.2) StaffType}, OR(@cell = "RN", @cell = "RN - Peds", @cell = "PICU Flex RN"), {Intake - Master Sheet (V.2) SupplyDemand}, "Demand", {Intake - Master Sheet (V.2) Shift}, OR(@cell = "AM (7A - 7P)", @cell = "DA (7A - 3P)", @cell = "D4 (7A - 11A)", @cell = "9a (9a-9p)"), {Intake - Master Sheet (V.2) Date}, @cell = TODAY())
Any help is much appreciated!