I am having this value "4185825" in double variable format but I want to get this value with precesions "4185825.00"

SUggest a expression for this

Hi @Monica_K69 ,

Try the below :

Math.Round(4185825).ToString("N2")

Hello,

You can use
String.Format(“{0:0.00}”,convert.ToDouble(“4185825”))

Hope this helps,

Regards,
Saloni