Difference between revisions of "CommonFormula"

Jump to: navigation, search
(New page: =conditional processing= (test) ? true-case : false-case =operators= {| {{prettytable}} !Function!!description!!Example |- |max(a,b)||return the maximum between a and b |- |min(a,b)||retu...)
(No difference)

Revision as of 18:22, 3 January 2009

conditional processing

(test) ? true-case : false-case

operators

Function description Example
max(a,b) return the maximum between a and b
min(a,b) return the minimum between a and b
abs(a) return the absolute value of a
roundCeil(a,b) return the a value round top to b roundCeil(106,5) return 110