IF (condition) THEN (result :=  )



Tip: Condition can be isolated in parentheses (  ) to organize better (not necessary but good practice)

If ([property]<0)

If ('[property]' = 'Text')

If ([property]=10)


Caution: The returned value for the result will need to share the same type, being either a text or number, with the "inherited-from" property.




Then (result:=[property]) 

Then (result:='[property]') (when the property type is a text)

Then (result:=[property]-10) (when the property type is a number)


Example 1: if a equals 10 then d will be 100







Example 2: if a equals 10 then d will display "It is correct"



Example 3: if a is text then d will displays "It is correct"