Hi all,
I am trying to determine if a number of times are in the right sequence. I'm doing this by:
If( time1 <= time2 && time2<=time3 && ..., sequence true, sequence false)
If all time fields are not blank this works quite fine. Unfortunately there are some use cases where not all time fields will be filled but instead left blank. The others still need to be tested for sequenceiality (is this a real english word?) In this case the above doesn't work.
Is this because blank is greater or smaller than anything non blank or because it is generally impossible to compare something to nothing?
Thanks in advance for your help and thoughts
Hansjoerg