Forum Discussion
jpowers
8 years agoNew Member
Zero Value Formatting
How do I get zeros to show as dashes like accounting formatting in excel?
3 Replies
- Greg_DecklerCommunity Champion
I am not aware of how kind of formatting, maybe using the FORMAT function?
- v-chuncz-msftCommunity Support
You could add a calculated column.
Column = IF ( Table1[Column1] = 0, "-", Table1[Column1] & "" )
- jpowersNew Member
This converts the numbers to text and then I am unable to sum.