Simply I’m looking for a way in which to return an integer to thousand separated string format without precisions.
I tried different format specifier but all of them get me 2 digit precisions .
For instances I would like
123456 => "123,456" and not "123,456,00"
or
1234567 => "1,234,567"
and not "1,234,567.00"
You can specify a precision of 0 like this when using the standard numeric format of “n”:
Or in composite form: