ldiaz
(Leonardo Diaz)
1
hi i want to have output like this
“1,002,432,89”
how can i achieve this
this is my currently output
Srini84
(Srinivas Kadamati)
3
@ldiaz
Check below post for your reference
Hope this may help you
Thanks
1 Like
HI @ldiaz
Checkout this steps
only difference is you need to give your format in the configure format wizard
Regards
Sudharsan
1 Like
ldiaz
(Leonardo Diaz)
5
may input value is from my data table
which is currentline 17 and currentline 30
Hello @ldiaz
Try this expression
CDbl(YourString).ToString("N", CultureInfo.InvariantCulture)

1 Like
Gokul001
(Gokul Balaji)
7
HI @ldiaz
Just simple use like this
CDbl("123456789.85").ToString("n")

Regards
Gokul
1 Like
Hi @ldiaz
Try like this
Double.Parse("123489789.85").ToString("n0")

Regards
Sudharsan
1 Like
To round Of the value try this
CDbl(123463658.82).ToString(“N0”, CultureInfo.InvariantCulture)

agathiyanv
(Agathiyan)
10
Double.Parse(yourvalue).ToString(“#,0.####”)
system
(system)
Closed
11
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.