CFF
abs
abs(x) Returns the absolute value of x If the value of fieldname1 is -7.25, the result of: abs(fieldname1) would be 7.25
remainder
remainder(x,y) The remainder is the integer left over after dividing one integer by another to produce an integer quotient (integer…
factorial(x)
Returns the factorial of x, or null if x is not an integer greater than 0 factorial(4) returns 24
average(x,y,z,….)
Returns the average of values passed by parameter average(3,10,11) returns 8 The average operation accepts arrays of numbers: average([3,10],11) =…
concatenate(x,y,z,….)
Returns a text with all parameters concatenated concatenate(1, 2, 3) returns 123