CommonFormula

Revision as of 18:22, 3 January 2009 by Claratte (Talk | contribs) (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...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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