Counting Item that meets Criteria.

Good Evening Community. Trying to count an item that meets certain criteria. For example I am referencing two columns of the same sheet and trying to count the first column that contains Food POS and has a Projected Status of Projected Install. Below is code that has been attempted.
=COUNTIF(AND(({POS Install Status}, "Food POS") {POS Projected Install}, "Projected Installed"))
Answers
-
COUNTIF doesn't play nice with AND. Instead, try COUNTIFS (plural). This formula basically is the same logic as the "AND" you're trying to capture.
=COUNTIFS({POS Install Status},"Food POS",{POS Projected Install}, "Projected Installed")
Check this out for more information about COUNTIFS:
If this answer resolves your question, please help the Community by marking it as an accepted answer. I'd also be grateful for your response - "Insightful"or "Awesome" reactions are much appreciated. Thanks!
Help Article Resources
Categories
Check out the Formula Handbook template!