Forum Discussion
Thousand Separtors
- Anonymous7 years ago
Hi Arun,
For me it defaults to the US version when I select the field and select comma in modeling. If your default is diferent, you could perhaps force it using Format command such as
newdata = FORMAT(data[Column1],"#,0.")
Hi Arun,
For me it defaults to the US version when I select the field and select comma in modeling. If your default is diferent, you could perhaps force it using Format command such as
Nice. Format formula is working fine.
Thanks you so much.
- Anonymous7 years agoNot applicable
You are welcome. Glad it worked for you.
- ArunkumarK7 years ago
Helper I
Hi,
The idea you suggested is working but it creates another problem. When using the format function the number is converted into text. When i tried value(Format([col]),"#,0") then the thousand separator disapper. Something found but not the output as expected.
Buzz me if you have any idea.
Thanks in advance.
- Anonymous7 years agoNot applicable
Hi Arun,
when I used the value function to cast the text as a number, it did keep the commas but added decimal places.
newdata = value(FORMAT(data[Column1],"#,0."))I also changed the original column to a text field and the 'newdata' still came out formatted correctly ( but with decimals).