Forum Discussion
Kate_McCulloch
1 year agoRegular Visitor
Equal to or less than calculated Column
Looking to calculate is a date is less than or equal too calculated column which I have partly working, however if the date is blank its treating that as equal too or less than. How can I build in if...
- 1 year ago
Hi Kate_McCulloch please check this
Episode Check =IF (ISBLANK(FMRTS[Episode Start Date]),"No",IF (FMRTS[Episode Start Date] <= FMRTS[Form Start Date],"Yes","No"))
techies
Super User
1 year agoHi Kate_McCulloch please check this
Episode Check =
IF (
ISBLANK(FMRTS[Episode Start Date]),
"No",
IF (
FMRTS[Episode Start Date] <= FMRTS[Form Start Date],
"Yes",
"No"
)
)
Kate_McCulloch
1 year agoRegular Visitor
This worked exactly how I needed thank you
- techies1 year ago
Super User
Welcome 🙂