Skip to main content

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… 🙂 )


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

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 🙂


Yours sincerely,

Dimitris Goudis


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 🙂


Yours sincerely,

Dimitris Goudis




Getting this error message when copying / pasting the formula.


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 🙂


Yours sincerely,

Dimitris Goudis



Sorry I missed some parenthesis 😛


Please text me if you have any issue again !



Sorry I missed some parenthesis 😛


Please text me if you have any issue again !



Still getting the same error message



Still getting the same error message


Hey @Karen_Gardner,


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


Thanks



Still getting the same error message


I would use this formula:


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

I would use this formula:


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

Perfect, thank you. Worked


Reply