Trying to count meeting dates that have passed, but it keeps counting empty cells. Can someone help or offer a better solution?
IF({Meeting Date} <= TODAY(), “Yes”
Trying to count meeting dates that have passed, but it keeps counting empty cells. Can someone help or offer a better solution?
IF({Meeting Date} <= TODAY(), “Yes”
Try:
IF(AND({Meeting Date}, {Meeting Date} <= TODAY()), "Yes")
This topic was solved and automatically closed 15 days after the last reply. New replies are no longer allowed.