Skip to main content
Solved

Removing time from a nested DATEADD

  • September 27, 2023
  • 2 replies
  • 41 views

Forum|alt.badge.img+3

Hello!

I'm using DATEADD inside an IF. It returns a time with the date, and I would like to remove the time. I tried formatting the field but it says that it can't do that because it's neither text or a number:

The issue:

My formula:

The error message:

Any help is greatly appreciated!

George

 

Best answer by Sho

 

Hi @OneFiftyFive155,

Once the empty string("") in the ELSE argument of the IF statement has been removed, it should be possible to format it as a date.

IF( {Schedule Catch up?} = 1, DATEADD({Last Catchup}, 90, "days") )

2 replies

Forum|alt.badge.img+21
  • Inspiring
  • 560 replies
  • Answer
  • September 28, 2023

 

Hi @OneFiftyFive155,

Once the empty string("") in the ELSE argument of the IF statement has been removed, it should be possible to format it as a date.

IF( {Schedule Catch up?} = 1, DATEADD({Last Catchup}, 90, "days") )

Forum|alt.badge.img+3
  • Author
  • New Participant
  • 1 reply
  • September 30, 2023

Thank you!