How can i round off decimal number to 2 places in Velocity Template Engine?
set ($Percentage = $Marks*100/$Total)
I want to round off Percentage to 2 decimal places. How can i do that?
will Double roundTo(Object decimals, Object num) this work? i.e.
will #set ($Percentage = roundTo(2, $Marks*100/$Total)) work? will i have to include anything in .vm file to make this work?