G
Guest
I don't know why, for example, "Biology 127" is different with "Biology*".
When it evaluates the IF statement below, the statement inside the IF clause
is executed while I expect the Else statement should be executed.
If nz(Me!CLASS,"") <> "Biology*" Then
'Do this if True (i.e., if Null or not like Biology*)
Else
'Do this if False (i.e., like Biology*)
End If
When it evaluates the IF statement below, the statement inside the IF clause
is executed while I expect the Else statement should be executed.
If nz(Me!CLASS,"") <> "Biology*" Then
'Do this if True (i.e., if Null or not like Biology*)
Else
'Do this if False (i.e., like Biology*)
End If