Hello all,
Could someone tell me why example 1 does not work and example 2 will work:
example 1
———————————–
If numPrio = 0 Then
If datD1 = Null Then
datDeadline = datHD
Else
datDeadline = datD1
End If
Else
datDeadline = datD2
End If
———————————–
example 2
———————————–
If numPrio = 0 And datD1 = Null Then datDeadline = datHD
If numPrio = 0 And datD1 = Null Then datDeadline = datD1
If numPrio 0 Then datDeadline = datD2
———————————–
They seem the same to me, but they word different
Thanks in advance.