Forum Discussion
bartosz_s
8 years agoRegular Visitor
number formating issue
Hi to All, I have a figure with decimal places which is displayed like this: I'd like to change this view to show it like it is but without decimal places. Unfortunatelly when I try to change...
- 8 years ago
hi bartosz_s,
Then try this formula to create a calculated column ( my table is called Table1 and field Column1):
Column = FORMAT(Table1[Column1],"### ### ##0")
Hope it helps...
Ninter
Interkoubess
8 years agoSolution Sage
hi bartosz_s,
Then try this formula to create a calculated column ( my table is called Table1 and field Column1):
Column = FORMAT(Table1[Column1],"### ### ##0")
Hope it helps...
Ninter
bartosz_s
8 years agoRegular Visitor
Thank you :)