Countifs contains

Trying to count if a cell by criteria if another cell contains "device":
=COUNTIFS(CONTAINS("Device", [eCOA Department]:[eCOA Department]), [Award Date]:[Award Date], >=DATE(Year#, 3, 1), [Award Date]:[Award Date], <=DATE(Year#, 3, 31))
#INVALID OPERATION
Best Answers
-
Try this: =COUNTIFS([eCOA Department]:[eCOA Department], CONTAINS("Device", @cell), [Award Date]:[Award Date], >=DATE(Year#, 3, 1), [Award Date]:[Award Date], <=DATE(Year#, 3, 31)) This assumes Year# being replaced with an actual year.
-
Try the below:
=COUNTIFS([eCOA Department]:[eCOA Department],CONTAINS("Device",@cell), [Award Date]:[Award Date], @cell>=DATE(Year#, 3, 1), [Award Date]:[Award Date], @cell<=DATE(Year#, 3, 31))
Answers
-
Try this: =COUNTIFS([eCOA Department]:[eCOA Department], CONTAINS("Device", @cell), [Award Date]:[Award Date], >=DATE(Year#, 3, 1), [Award Date]:[Award Date], <=DATE(Year#, 3, 31)) This assumes Year# being replaced with an actual year.
-
Try the below:
=COUNTIFS([eCOA Department]:[eCOA Department],CONTAINS("Device",@cell), [Award Date]:[Award Date], @cell>=DATE(Year#, 3, 1), [Award Date]:[Award Date], @cell<=DATE(Year#, 3, 31))
-
That worked thank you
Help Article Resources
Categories
Check out the Formula Handbook template!