I have two worksheets.
Worksheet A is the master
Worksheet B is a collection of months' worth of data-it is populated by a form.
I'm trying to write a formula where I compare Names from Worksheet A to Worksheet B and identify on Worksheet A names that are missing from B in the current month.
Worksheet B has a column that identifies a row as current month.
=IF(COUNTIF({TOD Monthly Fleet Vehicle Safety Inspectio-ePlan #}, [ePlan #]@row ) = 0, "Missing")
The above formula identifies names on Worksheet A that are missing from Worksheet B, but how do I add in current month criteria to the formula?