- Release notes
- Before you begin
- Managing access
- Getting started
- Integrations
- Working with process apps
- Working with dashboards and charts
- Working with process graphs
- Working with Discover process models and Import BPMN models
- Showing or hiding the menu
- Context information
- Export
- Filters
- Sending automation ideas to UiPath® Automation Hub
- Tags
- Due dates
- Compare
- Conformance checking
- Root cause analysis
- Simulating automation potential
- Starting a Task Mining project from Process Mining
- Triggering an automation from a process app
- Viewing Process data
- Creating apps
- Loading data
- Transforming data
- Customizing process apps
- Publishing process apps
- App templates
- Notifications
- Additional resources

Process Mining
Logical
Description
Checks a condition specified by comparison field or expression.
IF
condition returns true
, the THEN
operations are calculated.
IF
condition returns false
, the ELSE
operations are calculated.
ELSE
is optional, and will return NULL
when not set.
Syntax
IF <Comparision field or Expression>
THEN <Expression or Field or Constant>
[ELSE <Expression or Field or Constant>]
Supported values
All values can be used.
NULL handling
IF
condition is NULL
, the ELSE
operations are calculated.
Example
IF User = "Robot" THEN "Automated event" ELSE "Manual event"
Description
true
if both of comparison field values or expressions are true
.
Syntax
<Comparison field or Expression> AND <Comparison field or Expression>
Supported values
All values can be used. Both values must be of the same kind.
NULL handling
NULL
, the result is NULL
.
Example
Department = "Sales" AND Salary > 50000
Description
true
if any of comparison field values or expressions is true
.
Syntax
<Comparison field or Expression> OR <Comparison field or Expression>
Supported values
All values can be used. Both values must be of the same kind.
NULL handling
NULL
, the result is NULL
.
Example
Department = "Sales" OR Salary < 50000
Description
Returns the inverse of a boolean value.
true
, the NOT
operation will return false
. If the condition is false
, the NOT
operation will return true
.
Syntax
NOT <Comparison field or Expression>
Supported values
All values can be used.
NULL handling
NULL
, the result is NULL
.
Example
NOT Department = "Sales"