Hey all,
I could use some help and I'm hoping this isn't too difficult. I am trying to add a formula that compares an event date to the date of the next time change. If it is before the date of the time change, it runs one formula, if after, it runs another formula. I thought this would be simple enough but I keep getting an error. The formula I am using is below:
IF(
IS_BEFORE({Session Date},03/10/2024),
"A working formula"),
IF(
IS_AFTER({Session Date},03/10/2024),
"Another working formula")
I know that the "working formulas" are correct because they work in other fields. I'm wondering if I need to format the date in a particular way or add a date field instead of using the specific date in the IF statement? Thanks in advance!