hidden columns

  • Thread starter brownti via OfficeKB.com
  • Start date
B

brownti via OfficeKB.com

Sub species_unhide()
Sheets("BID").Select
Application.Goto reference:="raw1"
Selection.EntireColumn.Hidden = False
End Sub
I have a column named raw1 and when this macro runs, i want the column to
become unhidden. The above code unhides everything on the sheet. Any
suggestions?
 
D

Dave Peterson

Sub species_unhide()
Sheets("BID").range("raw1").entireColumn.Hidden = False
End Sub

Are you sure that raw1 refers to a single column?

Are there any merged cells in that raw1 range?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top