Question
Nested conditions in Custom Calculated field
Hi all,
I am trying to create a custom calulated field that needs to meet 2 conditions before returing a result. It is referencing a date field and I want a True result only if the date is less than Today and Not Blank. So far I've been unsuccessful. I originially had it as below, but apparently the system includes blank as less than TODAY.
IF(Launched Recurring Benefit Date<$$TODAY,Recurring Benefit,0)
I also tried the opposite (below) with the same unsuccessful results
IF(Launched Recurring Benefit Date>$$TODAY,0,Recurring Benefit)
I'm fairly certain I'll need some sort of nested statement, but I can't seem to get it right. I greatly appreciate any help!