Oct 22, 2020 02:05 AM
How do I change the #ERROR to null?
How do I change the #ERROR and NaN to null?
Solved! Go to Solution.
Oct 22, 2020 08:15 AM
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(...)
)
Oct 22, 2020 08:15 AM
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(...)
)
Oct 22, 2020 07:05 PM
Thank you :smiling_face_with_three_hearts: :thumbs_up: