I have two different data sets. One running over a year and one month to date.
Some individuals have multiple entries with but used different names. For example John Doe and Johnny Doe. I need to count both as one so my formula for all data entry (which works) is:
=COUNTIF({RangeName}, "John Doe") + COUNTIF({RangeName}, "Johnny Doe")
Now I need to do the same for month to date. My formula (which works for one name) is:
=COUNTIFS({RangeName}, "John Doe", {RangeDate}, IFERROR(MONTH(@cell), 0) = MONTH(TODAY()))
How do I add Johnny Doe to the second formula in order to count both names?