Help

Date calculation formula that ignores blanks

Topic Labels: Formulas
Solved
Jump to Solution
1434 7
cancel
Showing results for 
Search instead for 
Did you mean: 
Karen_Gardner
4 - Data Explorer
4 - Data Explorer

I have a date formula to work out the number of days between 2 dates, if either or both of the dates are blank, it returns NaN, how can I amend the formula to only perform the calculation if both fields are populated?

(Long overdue a lay-in and my brain is not functioning by itself, need help… :slightly_smiling_face: )

DATETIME_DIFF({Finished},{Started},“days”)

1 Solution

Accepted Solutions

I would use this formula:

IF(
AND(Finished,Started),
DATETIME_DIFF(Finished,Started,"days")
)

See Solution in Thread

7 Replies 7

Hey @Karen_Gardner,

You can use the following condition:

IF(AND(LEN{Finished}!=0,LEN({Started}!=0)),DATETIME_DIFF({Finished},{Started},“days”,0)

The condition checks if both of the given dates are not blank. If the condition is true then it returns your time difference.

Please check it and let us know if it worked :slightly_smiling_face:

Yours sincerely,
Dimitris Goudis

image
Getting this error message when copying / pasting the formula.

Sorry I missed some parenthesis :stuck_out_tongue:

Please text me if you have any issue again !

Still getting the same error message

Hey @Karen_Gardner,

Could you import the function manually in the filed without using copy and paste?

Thanks

I would use this formula:

IF(
AND(Finished,Started),
DATETIME_DIFF(Finished,Started,"days")
)

Perfect, thank you. Worked