UiPath Documentation
apps
latest
false
Legacy Apps user guide
important :
For documentation on app projects in Studio Web, refer to the App Projects chapter in the Studio Web documentation: https://docs.uipath.com/studio-web/automation-cloud/latest/user-guide/apps-in-studio-web.

Function: If

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.

ArgumentTypeDescription
Condition(s)RequiredConditions/Expressions to test for true.
IsTrueRequiredThe value to use if the condition evaluates to true.
OtherwiseOptionalThe 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