23-06-23 09:39 PM
Hi,
I have a DateTime column where some row values are empty. I used a decision stage where I used a formula like "If the cell is empty, then add 2 hours. Otherwise, go to the next step". But for the empty cell, the following error is displayed.
"Internal : Cannot perform <> operation when the left-hand value is empty".
It would be great if someone could provide a solution to this problem.
Answered! Go to Answer.
24-06-23 03:28 PM
You can use the IsDateTime function to check if a cell is a valid DateTime (a blank cell is an invalid DateTime).
IsDateTime([Details.Completed DateTime])
24-06-23 03:28 PM
You can use the IsDateTime function to check if a cell is a valid DateTime (a blank cell is an invalid DateTime).
IsDateTime([Details.Completed DateTime])
24-06-23 05:00 PM
Thanks. It worked.