Hello everyone.
Just wanted to share a macro I created that will toggle the display zero values.
It is a very simple code that will change the display of zero values.
I created a button in the ribbon that will access the macro so I just need to press it instead of going to all the trouble (not much I know) to change the zero value being shown or not.
Sub zero_value()
'
' Toggle zero value display Macro
' Macro Created 09/03/2020 by Husoi
If ActiveWindow.DisplayZeros = True Then
ActiveWindow.DisplayZeros = False
Else
ActiveWindow.DisplayZeros = True
End If
End Sub
Enjoy it
Just wanted to share a macro I created that will toggle the display zero values.
It is a very simple code that will change the display of zero values.
I created a button in the ribbon that will access the macro so I just need to press it instead of going to all the trouble (not much I know) to change the zero value being shown or not.
Sub zero_value()
'
' Toggle zero value display Macro
' Macro Created 09/03/2020 by Husoi
If ActiveWindow.DisplayZeros = True Then
ActiveWindow.DisplayZeros = False
Else
ActiveWindow.DisplayZeros = True
End If
End Sub
Enjoy it