Rounding

Hi all,

How to Round the number 145.23 to 145 in report. Please provide me solution.

Thanks in advance.

use round function

as well as if u r using textbox to display the value then use properties decimalplaces of textbox to display the value

// Returns the value 125.00.

round(123.45,5.00);

I need 125 not 125.00

Then use Format(round(123.45,5.00)) function to display the same.

Ya… It’s working… Thanks Mr.Amol

Kindly verify the solution if is resolve ur problem

Thanks