I have a sheet that list people on a team in rows with columns containing 26 certification types. Each certification type has a certification date that is also the start date of a 90-day grace period. I have included an end date field for the grace period and a checkbox field to indicate if the person in the grace period for any of the certifications.
The end user wants a report to include if any person has a certification in a grace period for the current month.
I added checkbox helper fields for January-December and wrote this formula that works for one certification (Email- Admin II):
=IFERROR(IF(OR(AND(ISDATE([Email- Admin II]@row), YEAR([Email- Admin II]@row) = YEAR(TODAY()), MONTH([Email- Admin II]@row) = 3), AND(ISDATE([Email Grace End Date]@row), YEAR([Email Grace End Date]@row) = YEAR(TODAY()), OR(MONTH([Email Grace End Date]@row) = 3, MONTH([Email Grace End Date]@row) = 4, MONTH([Email Grace End Date]@row) = 5))), 1, 0), "")
Is there another way to approach this so that I don't have to have January-December fields for each of the 26 certifications?
Thanks for any help!
Lori Flanigan