I have a linked Excel Spreadsheet. the source spreadsheet has one column for the user to pencil in a count of the inventory counts. How can I get rid of the zero in the receiving spreadsheet so the field is blank?
You could also use a custom numerical format.
FormatCells > Number > Custom
then feed in the string
#,##0;-#,##0;
where the final semi-colon is important and the minus sign can be even more important.[ ] (This assumes that you are restricting yourself to integer numbers.[ ] If not, minor changes are required.)
I often use a variant of this, where I like a small marker instead of the zero.[ ] I use the "·" character (ANSII code = 0183), and so the custom string becomes
#,##0;-#,##0;"·"
The use of the · character serves two purposes.[ ] It confirms for me that the cell is not empty, while not being as visually obtrusive as the 0 character.[ ] In a tabular layout the presence of the marker rather than blank space helps to emphasise the tabular presentation and to guide the eye in following the rows and columns if the table is heavily populated with zeroes.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.