Help

Hiding #ERROR! Message from field

Topic Labels: Formulas
Solved
Jump to Solution
143 2
cancel
Showing results for 
Search instead for 
Did you mean: 
0mauy0
4 - Data Explorer
4 - Data Explorer

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 😉

1 Solution

Accepted Solutions
Devon_Moore
6 - Interface Innovator
6 - Interface Innovator

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"
 )
)

See Solution in Thread

2 Replies 2
Devon_Moore
6 - Interface Innovator
6 - Interface Innovator

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"
 )
)

Hi,
Note that it is recommended to use TODAY() instead of NOW() when you don't need time.