Skip to main content
Solved

How do I change the #ERROR to null?

  • October 22, 2020
  • 2 replies
  • 17 views

Forum|alt.badge.img+9

How do I change the #ERROR to null?

How do I change the #ERROR and NaN to null?

Best answer by Jeremy_Oglesby

Hi @Vijay_chen,

You can remove those errors by surrounding your formulas in a conditional that checks for values in the fields being operated on first.

IF(
   {Wished ETA},
   DATEADD(...)
)

2 replies

Forum|alt.badge.img+18
  • Inspiring
  • Answer
  • October 22, 2020

Hi @Vijay_chen,

You can remove those errors by surrounding your formulas in a conditional that checks for values in the fields being operated on first.

IF(
   {Wished ETA},
   DATEADD(...)
)

Forum|alt.badge.img+9
  • Author
  • Known Participant
  • October 23, 2020

Hi @Vijay_chen,

You can remove those errors by surrounding your formulas in a conditional that checks for values in the fields being operated on first.

IF(
   {Wished ETA},
   DATEADD(...)
)

Thank you :smiling_face_with_three_hearts: :thumbs_up: