| Parameter | Details | 
|---|---|
| result | Required. Any Boolean expression. The result is the Boolean result of comparison of the two expressions. | 
| expression1 | Required. Any Boolean expression. | 
| expression2 | Required. Any Boolean expression. | 
'AndAlso' and 'OrElse' are ShortCircuiting operators that means that the execution is shorter because the compiler doesn't evaluate all the expressions in a boolean comparision if the first one provides the desidered result.