A
AA Arens
Anybody know the VB code added to a (toggle) command button that hides
and unhides a selection of rows or columns?
Bart
and unhides a selection of rows or columns?
Bart
Thank you Trevor.Bart
To hide:
selection.entirerow.hidden = true
selection.entirecolumn.hidden = true
To toggle:
selection.entirerow.hidden = not selection.entirerow.hidden
selection.entirecolumn.hidden = not selection.entirecolumn.hidden