I used this formula to return the number of times that “Monika” appeared for a given date range.
=SUMPRODUCT((DateReceived>=$A4)*(DateReceived<=$B4)*(Validationor="Monika"))
A4 contains my minimum date and B4 contains my upper date range.
Now, I want to ADD (sum) the numbers in range AN3:AN5000 for the above criteria.
FYI, the name of range AN3:AN5000 is NumReports
-Jody