COUNTIFS - Cross-sheet references, AND, DATE formula

I am trying to count the times a plant has entered on a specific date.
(We have 14 plants - so...)
I want to know how many times Birmingham entered data on 9/1/20.
I can count BHM data entries;I can count the number of entries on 9/1. But I can't seem to put it together.
=COUNTIF({Plant}, "Birmingham")
=COUNTIF({StencilDate}, =(DATE(2020, 9, 1)))
seems simple but I get that error I don't like :)
Best Answer
-
Use COUNTIFS. That let's you use multiple filters in a reference. =countifs({Plant}, "Birmingham",{StencilDate},DATE(2020, 9, 1)).
Hopefully I am not oversimplifying things
Answers
-
Use COUNTIFS. That let's you use multiple filters in a reference. =countifs({Plant}, "Birmingham",{StencilDate},DATE(2020, 9, 1)).
Hopefully I am not oversimplifying things
-
Try this
=COUNTIFS(Plant:Plant, "Birmingham", StencilDate:StencilDate,(DATE(2020, 9, 1)))
-
1st Response worked!!
Thank you much!!
Help Article Resources
Categories
Check out the Formula Handbook template!