with two or more conditions and have compare time.
For example,
IIf (
([max upload date]-[apt start date])>=1,"LATE"
) AS B,
but also add another logic to the first if
IIf (
([max upload date]=[apt start date]) and ([max upload time] >8:00pm) , "LATE"
) AS D
my second if is an error but how can I combined all of these logic into one?
This is in the select statement.
Thanks, appreciate it.
For example,
IIf (
([max upload date]-[apt start date])>=1,"LATE"
) AS B,
but also add another logic to the first if
IIf (
([max upload date]=[apt start date]) and ([max upload time] >8:00pm) , "LATE"
) AS D
my second if is an error but how can I combined all of these logic into one?
This is in the select statement.
Thanks, appreciate it.