Dec 08, 2021 07:41 AM
I was wondering if someone was able to help me out.
I am looking use a formula to calculate the amount of days until an item has to be renewed. What I would like is that when it’s nested within an IF statement it is calculated as a VALUE rather than a STRING.
The reason for the IF statement is that when the Expiry Date is empty, no value will show in the “Days Remaining” Field.
Here is the formula:
IF({Passport (Expiry)}=BLANK(),’’, DATETIME_DIFF({Passport (Expiry)},TODAY(),‘days’))
I’m likely missing something really obvious in this regard.
Solved! Go to Solution.
Dec 08, 2021 08:13 AM
Here’s one way to solve it:
IF(
{Passport (Expiry)}!="",
DATETIME_DIFF({Passport (Expiry)},TODAY(),'days')
)
Dec 08, 2021 08:13 AM
Here’s one way to solve it:
IF(
{Passport (Expiry)}!="",
DATETIME_DIFF({Passport (Expiry)},TODAY(),'days')
)
Dec 08, 2021 10:17 PM
@ScottWorld This worked perfectly. Thanks so much.