I want to compare several items and if they are all equal then do
this...otherwis e do this...see example below...
If (a = a) AND (b = b) AND (c = c) AND (d = d) Then
..Code..
Else
..Code..
End If
this...otherwis e do this...see example below...
If (a = a) AND (b = b) AND (c = c) AND (d = d) Then
..Code..
Else
..Code..
End If
Comment