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
Dimitris_Goudis:
IF(AND(LEN({Finished})!=0,LEN({Started})!=0)),DATETIME_DIFF({Finished},{Started},“days”),0)
Sorry I missed some parenthesis
Please text me if you have any issue again !
Dimitris_Goudis:
IF(AND(LEN({Finished})!=0,LEN({Started})!=0)),DATETIME_DIFF({Finished},{Started},“days”),0)
Sorry I missed some parenthesis
Please text me if you have any issue again !
Dimitris_Goudis:
IF(AND(LEN({Finished})!=0,LEN({Started})!=0)),DATETIME_DIFF({Finished},{Started},“days”),0)
Still getting the same error message
Dimitris_Goudis:
IF(AND(LEN({Finished})!=0,LEN({Started})!=0)),DATETIME_DIFF({Finished},{Started},“days”),0)
Still getting the same error message
Hey @Karen_Gardner ,
Could you import the function manually in the filed without using copy and paste?
Thanks
Dimitris_Goudis:
IF(AND(LEN({Finished})!=0,LEN({Started})!=0)),DATETIME_DIFF({Finished},{Started},“days”),0)
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