Forum Discussion
jpowers
9 years agoNew Member
Zero Value Formatting
How do I get zeros to show as dashes like accounting formatting in excel?
v-chuncz-msft
Community Support
9 years ago
You could add a calculated column.
Column = IF ( Table1[Column1] = 0, "-", Table1[Column1] & "" )
jpowers
8 years agoNew Member
This converts the numbers to text and then I am unable to sum.