Difference between revisions of "Complex formulas"
Jump to navigation
Jump to search
old>Admin (Created page with ' ==== Common operators ==== * Add: + * Subtract: - * Division: / * Multiply: * * Modulus: % ==== Mathematical functions ==== * Minimum * Maximum ==== Support for statements ===…') |
old>Admin |
||
Line 12: | Line 12: | ||
==== Support for statements ==== | ==== Support for statements ==== | ||
===== IF statement ===== | |||
* Test: Value or expression | |||
** Equal: = | |||
** Unequal: != | |||
** Greater: > (>=) | |||
** Lesser: < (<=) | |||
* true/false values | |||
** Value | |||
** Expression | |||
===== Examples ===== |
Revision as of 09:40, 22 May 2013
Common operators
- Add: +
- Subtract: -
- Division: /
- Multiply: *
- Modulus: %
Mathematical functions
- Minimum
- Maximum
Support for statements
IF statement
- Test: Value or expression
- Equal: =
- Unequal: !=
- Greater: > (>=)
- Lesser: < (<=)
- true/false values
- Value
- Expression