Apr 29, 2020 07:42 AM
I used the DATETIME_DIFF({Date Due}, TODAY(), ‘days’) formula to give me the number of days until the due date, however, how do I put an IF statement in if there isn’t a start / due date?
Apr 29, 2020 08:34 AM
Hey Something like this should work. Your return values are seperated by commas. Your first value is your original formula, and your second is the value you want if there isn’t a date.
IF({Due Date}, DATETIME_DIFF({Date Due}, TODAY(), ‘days’), "**IF THERE ISN'T***")
Apr 29, 2020 08:54 AM
Thank you, but that didn’t work. Says there’s an error in the formula.
Apr 29, 2020 09:00 AM
You have to change the quotation marks in 'days'
So it should be
IF({Due Date}, DATETIME_DIFF({Date Due}, TODAY(), 'days'), Blank())
Dec 07, 2020 10:18 AM
Thankyou so much for this! Helped me too. Wondering if you can help me further - the formula is calculating the right number, except it’s returning a minus in front of the number for some reason. Any ideas how I can fix this?
IF({DOB}, DATETIME_DIFF({DOB}, TODAY(), ‘years’), BLANK())
Oct 08, 2024 05:55 PM
I have a similar question...
I want a reminder field to calculate 30 days before a contract is going to expire. But sometimes, there is no "due date". In those instances, the "reminder" field should be blank. Currently it says #ERROR.
How can I change this reminder field formula?