IF (condition1) THEN (result:=  ) ELSE IF (condition2) THEN (result:=  ) ELSE IF (condition3) ELSE (result:=  )






Caution: Any of those THEN (result:=  ) the returned value will need to share the same type, being either a text or number, with the "inherited-from" property. The same for "ELSE(result:=)"


Example: If a equals 10 then will display "It is 10". If a equals 20 then d will display "It is 20". If a equals 30 then d will display "It is 30". If not, the final result is "No result".