Rounding in Dynamics NAV 2013 R2 Reports

i want to round the this value 262,032.20 to 262,33.00 in microsoft dynamics navision 2013 r2

2013 R2 reports

To 262,33.00?? Not 262,032.00?

Take simply ROUND Before variable where your value stored. Ex. ROUND(Amt).

I HAVE DONE IT IN SAME WAY BUT IT ROUNDING TO 262,032.00.

You need to specify the direction, that you want to round up.
The syntax for the round function is: ROUND(Number [, Precision] [, Direction])

So you need to use it as ROUND(Amt,0,’>’).