Hi,
I am trying to get an output of all the cases who were opened for more than 60 days, but is still currently opened and not closed.
IIF(DateTimeDiff([Cased Closed],[Cased Opened],'day') >=60, 'Yes','No')
This formula works to give me 'Yes' for cases that were opened for 60 days, and 'No' if opened for less than 60 days. However, I want the include the AND cases that are still currently opened.
So the 'Yes' would only show if the cases have been opened for 60 days and is still open.
example:

Any help is appreciated!