apps
2021.10
false
- Before You Begin
- Getting Started
- How To
- Designing your App
- Events and Rules
- Function: And, Or, Not
- Function: Concat
- Function: Contains
- Function: Count
- Function: EndsWith
- Function: If
- Function: IsBlank
- Function: Length
- Function: List
- Function: StartsWith
- Function: Sum
- Function: Sort
- Function: Now
- Function: Today
- Function: Time
- Function: Year
- Function: Month
- Function: Day
- Function: Hour
- Function: Minute
- Leveraging RPA in your App
- Application Lifecycle Management (ALM)
- Basic Troubleshooting Guide
Function: And, Or, Not
OUT OF SUPPORT
Apps User Guide for Automation Suite
Last updated Nov 11, 2024
Function: And, Or, Not
Logical functions
These functions are based on the Logical Operators.
Function |
Syntax |
Operator |
Description |
Example |
---|---|---|---|---|
And |
And(Condition1, Condition2 [,Condition3 …]) |
|
Returns true if all arguments are true. |
And(TRUE, TRUE): True
And(TRUE, FALSE): False
And(FALSE, FALSE): False
And(TRUE, TRUE, TRUE): True
|
Or |
Or(Condition1, Condition2 [,Condition3 …]) |
|
Returns true if any of the arguments are true. |
Or(TRUE, TRUE): True
Or(TRUE, FALSE): True
Or(FALSE, FALSE): False
Or(FALSE, FALSE, TRUE): True
|
Not |
Not(Condition) |
|
Returns true if its arguments is false, and returns false if its argument is true. |
Not(TRUE): False
Not(FALSE): True
Not(NOT(TRUE)): True
|