Search code examples
teleriktelerik-reporting

Rounding decimals to two decimal places in telerik reporting


Is there anyway to round number similar to 1.66667 up to two decimal places like 1.67 in telerik reporting. I know that they have an build in function called Round(number). But it only round into integer value.


Solution

  • try format function like

        =Format("{0:0.00}", 1,6667)