Trying to analyze multiple date columns against a current date to ensure the training has occurred within the last year and if not then flag as needing to be trained. But when I incorporate the various date cells for reference I get the #invalid operation error for the blanks.
Formula: =IF(OR([DTMC & Trainer Training Date]@row <= [Current Date]@row, [SSS Training Date]@row <= [Current Date]@row, [SESIR Training Date]@row <= [Current Date]@row, [DTMC Training Date]@row <= [Current Date]@row, [Trainer Training Date]@row <= [Current Date]@row), "Green", "Red")
The ones that are showing green are because I limited to just that cell to ensure the formula worked at an individual row level, but the others are using the full formula above.