Doubt in IF–ELSE Condition in Formula Plugin (Process Studio)

I am currently working in Process Studio and using the Formula Plugin.

I have a doubt regarding the implementation of an IF–ELSE condition inside the Formula Plugin.

I am trying to apply a conditional logic, but I am not sure about the correct syntax/structure to use.

Could someone please guide me on:

  • The correct format for IF–ELSE condition in Formula Plugin

  • How to handle multiple conditions (nested IF)

In Process Studio – Formula Plugin, conditional logic is written using the standard IF() function format.
General Syntax:

IF(Logical_Condition ; IfTrue_Value ; IfFalse_Value)
Example (Single Condition):

IF([Amount] >= 10000 ; “Approved” ; “Rejected”)
If the Amount is greater than or equal to 10,000 → Output = Approved, otherwise → Rejected.
Handling Multiple Conditions (Nested IF):

IF([Score] >= 80 ;“Grade A” ;IF([Score] >= 50 ;“Grade B” ;“Fail”))