Suppress zero showing in cells that have zero value

dahowarduk

Member
Joined
Jul 15, 2012
Messages
39
Reaction score
0
Points
6
Location
UK
Excel Version(s)
2104
This can be achieved via file ~ options ~ advanced options ~ (then after much scrolling down) ~ untick show a zero in cells that have zero value.
Is it possible to set this zero suppress as a default option, whenever I open a new spreadsheet?
Alternatively is it possible to add a' special 'tab' to the toolbar which can be clicked on, to then suppress zeros?
Thanks
 
I did this and put the icon/button in the Quick Access Toolbar (QAT):

1713005251189.png

It's a one line macro which I put (recorded, initially) in the Personal workbook so that it's always available in any workbook:

1713005393928.png

then edited the macro to:
Code:
Sub ToggleZeros()
ActiveWindow.DisplayZeros = Not ActiveWindow.DisplayZeros
End Sub
Then added it to the QAT:
 
I got as far as "edit the macro to...", when I got a message "can't edit macro in hidden worksheet', but it wasn't hidden!

Help please
 
Back
Top