How to add 'Comma' in Numbers

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")
2 Likes

grafik

1 Like

Hii @Muralikrishna_Surve
Please try this.
OutputVariable(String) = Cdbl(YourIntValueVariable).ToString(“#,##0.00”)

Cheers,

1 Like

Hi @Muralikrishna_Surve

How about this expression?

String.Format("{0:N0}", 20000)
  1. You can also try with Format Value activity

Regards
Gokul

2 Likes

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