| Description: |
Used to perform a logical AND on two boolean expressions |
| Syntax: |
result=(expression1 and expression2) |
| Information: |
| result | boolean |
Indicates whether both booleans are true |
| expression1 | boolean |
Any valid boolean expression |
| expression2 | boolean |
Any valid boolean expression |
|
| Notes: |
If both expressions evaluate to True, the result is true. Of either or both are False, result is False. |
| Examples: |
Dim a,b,c,d as boolean
a=True b=True
d=(a and b) //d is True d=(a and c) //d is False |