Help

Re: IF Statement w/ DATEADD – Show blank values instead of #ERROR

Solved
Jump to Solution
508 1
cancel
Showing results for 
Search instead for 
Did you mean: 
Jessica_Pena
7 - App Architect
7 - App Architect

I know that these types of questions have been asked several times here, but I haven’t been able to replicate suggestions from other threads to get the desired empty cell for my formula. Thanks in advance for any assistance!

My formula is:

DATEADD({Associated Event Date}, {Days before/after event date} * 1, ‘days’)

some of my tasks do not have a value for the {Days before/after event date} field. In these cases, I would like for the cell to show up empty rather than show #ERROR.

Please help :grinning_face_with_big_eyes:

1 Solution

Accepted Solutions
Kamille_Parks
16 - Uranus
16 - Uranus
IF(
   AND({Associated Event Date}, {Days before/after event date}),
   DATEADD({Associated Event Date}, {Days before/after event date}, 'days')
)

See Solution in Thread

2 Replies 2
Kamille_Parks
16 - Uranus
16 - Uranus
IF(
   AND({Associated Event Date}, {Days before/after event date}),
   DATEADD({Associated Event Date}, {Days before/after event date}, 'days')
)

Thank you, that took care of it!