Forum Discussion
Developer_921
2 years agoFrequent Visitor
Decimal point display in custom format
If I want to display millions in a custom format, I can specify "#,##0,," but how do I display the first decimal place? Even if I specify "#,##0.0,,", it will be displayed as "12,345,678.0,," which ...
- 2 years ago
In this case, place the decimal placeholder ".0" after the two commas:
"#,##0,,.0"Does that work for you?
OwenAuger
2 years agoSuper User
In this case, place the decimal placeholder ".0" after the two commas:
"#,##0,,.0"
Does that work for you?
Developer_921
2 years agoFrequent Visitor
It is now displayed correctly.
Thank you very much.