I'm working out a formula to count the number or cells if the conditions are met using countifs.
I am looking to find out the number of events that are eligible [Data Validation] with a certain [Location], [City], AND [Event].
The example is as such:
Name | Location | City | Event | Event Date | Data Validation
IE: Matt at location 80292 (which includes city(s) 88850, 00000, and "") has 2 [Date Validated] BBQ [Events].
I came up with the following code to count all of these without filters:
=SUM(COUNTIFS(Table2[LOCATION],"80292"*OR(Table2[CITY]="",Table2[CITY]="88850",Table2[CITY]="00000",Table2[EVENT]="BBQ"),Table2[DATE VALIDATE],"1"))
This formula is returning a outstand numbering. Out of 812 Lines of data, it is returning a number of 977. The correct answer should be around 600.
Can someone assist in correcting the formula I have to meet my intent?
Thank you for the help!