hi i want to have output like this
“1,002,432,89”
how can i achieve this
this is my currently output
hi i want to have output like this
“1,002,432,89”
how can i achieve this
Hi @ldiaz
Can you share the Input
HI @ldiaz
Checkout this steps
only difference is you need to give your format in the configure format wizard
Regards
Sudharsan
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)
To round Of the value try this
CDbl(123463658.82).ToString(“N0”, CultureInfo.InvariantCulture)
Double.Parse(yourvalue).ToString(“#,0.####”)
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.