I am Having A="39,498,246.86" but I need this value without Comma's Like this 39498246.86

Please suggest a expresion for this

hi @Gopikrishna_S Sure let’s say this value is stored as variable

Str_Value

So in assign use an expression like this

Str_Value.Replace(β€œ,”,β€œβ€)

So this replaces β€œ,” where you will get the desired expected output

Thanks

Thank You Got the Solution

1 Like

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