Märkus.
Juurdepääs sellele lehele nõuab autoriseerimist. Võite proovida sisse logida või kausta vahetada.
Juurdepääs sellele lehele nõuab autoriseerimist. Võite proovida kausta vahetada.
Combines two conditions. Returns TRUE when either of the two conditions is true.
Important
Microsoft no longer recommends creating and using Access web apps in SharePoint. As an alternative, consider using Microsoft PowerApps to build no-code business solutions for the web and mobile devices.
Syntax
BooleanExpression Or BooleanExpression
The Or operator uses the following argument.
| Argument name | Description |
|---|---|
| BooleanExpression |
Any valid expression that returns TRUE or FALSE. |
Remarks
When more than one logical operator is used in a statement, Or operators are evaluated after And operators. However, you can change the order of evaluation by using parentheses.
The following table shows the result of the Or operator.
| TRUE | FALSE | |
|---|---|---|
| TRUE |
TRUE |
TRUE |
| FALSE |
TRUE |
FALSE |