apps
2021.10
false
UiPath logo, featuring letters U and I in white
OUT OF SUPPORT

Apps User Guide for Automation Suite

Last updated Nov 11, 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?

Connect

Need help? Support

Want to learn? UiPath Academy

Have questions? UiPath Forum

Stay updated