Skip to main content

Formula

Use the math.formula template function to enter a mathematical formula in plain text. When the template is parsed, it is converted to the relevant math. function. This is done the first time the template is used after a platform reload (i.e. on compile, release ring switch, or new release).

Both plain text formulas and standard math. functions have similar performance, although there can be a small performance gain on first use when using the standard functions.

The following table contains examples of valid formula templates.

Example formula templateResultRemark
Basic math
3-5-2
3*515
3/50.6
3+5*738Normal ordering
(3+5)*756Use parentheses to force ordering
3/5*74.2Divide and multiply are equal
Other functions
add(3;5)8The mathematical function of addition
AdD(3;5)8Everything is case insensitive
subtract(3;5)-2
multiply(3;5)15
divide(3;5)0.6
floor(3.1415)3
round(3.1415)3
ceil(3.1415)4
round(3.1415;3)3,142To separate the argument from the rounding decimal, use a semicolon ;
if(3==5){3}else{5}5Supported operators are ==, <, <=, >, >=, <>, !=, !==, where the last three are all the same
White spaces
1       +   23White spaces and tabs are trimmed
1 + 23New lines are trimmed
Strings
"abc""ABC"A string is placed between quotation marks
"monkey mies""monkey mies"White spaces and new lines in text are not trimmed
"<a href=\\"https://www.google.com\\">This is a link</a>"<a href="https://www.google.com">This is a link</a>\" is used to escape the quotes " in strings \\ is used to escape the backslashes \ in strings
"ab" & 3"ab3"String concatenation uses ampersand &
"ab" "c"ERRORAlways separate arguments with an operator (for example with & to concatenate a string)
"ab" 3ERRORAs above
"ab" & 3+4"ab7"Unlike other languages, addition and subtraction operations are performed prior to string concatenation
add("1";2)ERRORMathematical functions cannot be applied to strings
add(cast("1"; integer); 2)3
"ab" & cast(3.14; integer)ERRORA template part (an argument is string concatenation) cannot be casted
cast("1"&"2"; integer)ERRORThe top level is a (trivial) String concat. Use the return type of the template instead.
"ab" & add(cast(3.14;integer);0)"ab3"A workaround is to introduce a template.
if("a" & "b" == "ab"){ "yes" }else{ "no" }"yes"Strings can be used in combination with the "if" function. The "if" and the "cast" function are the only functions that accept a string as an argument
Money & cast
cast( "{\\"currency\\":\\"EUR\\",\\"value\\": 3.14}" ; money)+ cast( "{\\"currency\\":\\ "EUR\\",\\"value\\": 2.71}" ; money)Money: {"currency":"EUR","value": 5.84}money+money=money
cast( "{\\"currency\\":\\"EUR\\",\\"value\\": 3.14}" ; money)+2.71ERRORMismatching units
cast( "{\\"currency\\":\\"EUR\\",\\"value\\": 3.14}" ; money)*2Money: {"currency":"EUR","value": 6.28}money * integer = money
cast( "{\\"currency\\":\\"EUR\\",\\"value\\": 3.14}" ; money) * cast( "{\\"currency\\":\\ "EUR\\",\\"value\\": 2.71}" ; money)ERRORWhat are the units of money squared
cast( "{\\"currency\\":\\"EUR\\",\\"value\\": 3.14}" ; money)/ cast( "{\\"currency\\":\\ "EUR\\",\\"value\\": 1.56}" ; money)2money/money=double. WARNING: this does not check the currencies!
cast( "{\\"currency\\":\\"EUR\\",\\"value\\": 3.14}" ; money)/2Money: {"currency":"EUR","value": 1.57}money/double=money
2 / cast( "{\\"currency\\":\\"EUR\\",\\"value\\": 3.14}" ; money)ERRORInverse money does not exist
Template functions
intVariable (integer@taskdatacache) + 3(addition)Normal template functions like "case.attribute" can be used as an argument
"abc intVariable (integer@taskdatacache)"ERRORNormal template functions cannot be used in a string
"abc " & intVariable (integer@taskdatacache)(string concatenation)Use string concatenation instead
function (string@taskdatacache)(plain text)