Please someone help me to hide #ERROR! - not all my fields have dates insert and in this case ERROR appears
IF(
AND(
{date},
NOW() >= DATEADD({date}, -30, "days")
),
"ending time"
)thanks a lot 😉
Please someone help me to hide #ERROR! - not all my fields have dates insert and in this case ERROR appears
IF(
AND(
{date},
NOW() >= DATEADD({date}, -30, "days")
),
"ending time"
)thanks a lot 😉
Best answer by DevonK
You’ll have to use a nested if to check if the date exists first:
IF({date},
IF(
NOW() >= DATEADD({date}, -30, "days"),
"ending time"
)
)Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.