Round of values in datatable

In datatable I have one column in which there are many values like 5.502333 etc… I just want to take round of value like 5.50 till two digit … how I can apply for all values in datatable…

Need ur Help!!

Hi @Addy_619,

If you want to round the value to 2 decimals, Try with Math.Round(Cdbl(row(“Column1”).ToString),2)
Math_Round.xaml (7.7 KB)


Answer

1 Like

Thanks I will try and reply u back soon…

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.