I have designed a report with 9 columns, for one of the price column the values are in float and i need to change into decimal values Ex:when i run report ,the column values are 10.2222222 and i need like this 10.22 only two digits after point.
How can this be achieved.
I checked DecimalPlaces property of text box ,it is <2:2>…
Round will give you another result, it’s not just cutting of the remaining chars.
Actually you should also try to change the existing “<2:2>” to just “2:2” - (remove the <>) - the <> just marks that it’s the default value. But I have seen examples where it made a difference.