I’m using the following formula to check whether the data in another column (Call Forward) is before today. If yes, then enter today’s date, if no then enter the Call Forward date.
IF(IS_BEFORE({Call Forward},TODAY()),TODAY(),{Call Forward})
I’m gett...