Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

unhide columns in Excel

Status
Not open for further replies.

rmill

Technical User
Feb 11, 2003
12
US
Can I unhide all the hidden columns in a SS at once rather than one column at a time?
 
Simple I think.

Select all (CTRL A);
Right click any column header and click 'Unhide'
Should do the trick
 
Yes. Select all with Ctrl-A (or click in the square above the row numbers and left of the column letters) and select Format/Column/Unhide from the menu.

 
if I have 70 columns I don't want to do each column..can I unhide the whole SS with one click somehow?
 
Here is a marco that will do the same as what Pete and Zathra have posted. I recorded (Tools/Macro Record New Marco) the macro using the method Pete posted.


Sub unhide_all()
Cells.Select
Selection.EntireColumn.Hidden = False
End Sub


You can then assign the macro to a button. Mike
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top