Hi There,
I want to add comma in numbers.
EX :
1000 = 1,000
20000 = 20,000
400000 = 400,000 , etc.
How to achieve this ?
Hi There,
I want to add comma in numbers.
EX :
1000 = 1,000
20000 = 20,000
400000 = 400,000 , etc.
How to achieve this ?
Hello @Muralikrishna_Surve
Try this
CDbl(YourInteger).ToString("N", CultureInfo.InvariantCulture)
Or
CDbl(YourInteger).ToString("N")
Or
YourInteger.ToString("N")
Hii @Muralikrishna_Surve
Please try this.
OutputVariable(String) = Cdbl(YourIntValueVariable).ToString(“#,##0.00”)
Cheers,
How about this expression?
String.Format("{0:N0}", 20000)
Regards
Gokul
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.