Using conditions

Posted by:

Sometimes you will want to add conditions to your formulas, for example you might want to use different calculations depending on what options in your form are selected.

if(Condition)
  operation
else
  operation

Example:

The condition above will check the value of the dropdown, if the “Option 1” is selected ...

Continue Reading →
0