How to unhide the hidden columns in excel

I need to unhide all the hidden column in excel using vb script snice balareva package is not allowed to use

Hi @sruthesanju

Sub Unhide_All_Rows_Columns()
Columns.EntireColumn.Hidden = False
End Sub

The code is taken from here

1 Like

Hi @sruthesanju

U can do it with shortcut key to by using ctl+h

Thanks
Ashwin.S

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.