Apps
2021.10
false
Banner background image
Apps User Guide for Automation Suite
Last updated Apr 19, 2024

Function: If

Conditional evaluation (either/or)

Use this function to check if a condition is met.

Syntax

Description

Example

If(Condition(s), IsTrue[Otherwise])

Returns one value if a condition is true and another value if not.

docs image

Arguments

For more information on arguments, see the table below.

Argument

Type

Description

Condition(s)

Required

Conditions/Expressions to test for true.

IsTrue

Required

The value to use if the condition evaluates to true.

Otherwise

Optional

The value to use if the condition(s) do not evaluate to true. If nothing is specified then nothing is returned.

Examples

  • If(true, “Apricot”, “Blackberry”): Apricot
  • If(false, “Apricot”, “Blackberry”): Blackberry
  • If(1 > 0, “Apricot”, “Blackberry”): Apricot
  • If(1 < 0, “Apricot”, “Blackberry”): Blackberry
  • If(true && 1 > 0, “Apricot”, “Blackberry”): Apricot
  • If(true, If(1 > 0, “Apricot”, “Blackberry”), "Raspberry"): Apricot
  • If(false, If(1 > 0, “Apricot”, “Blackberry”), "Raspberry"): Raspberry
  • Arguments
  • Examples

Was this page helpful?

Get The Help You Need
Learning RPA - Automation Courses
UiPath Community Forum
Uipath Logo White
Trust and Security
© 2005-2024 UiPath. All rights reserved.