Used to perform a logical disjunction on two expressions.
result = expression1 Or expression2 |
The Or operator syntax has these parts:
Part | Description |
result | Required; any numeric variable. |
expression1 | Required; any expression. |
expression2 | Required; any expression. |
If either or both expressions evaluate to True, result is True. The following table illustrates how result is determined:
If expression1 is | And expression2 is | The result is |
True | True | True |
True | False | True |
False | True | True |
False | False | False |
If expression1 is | And expression2 is | The result is |
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 1 |
Dim A, B, C, D, MyCheck |
See Also |
Operators |