hidden columns

  • Thread starter Thread starter brownti via OfficeKB.com
  • Start date 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?
 
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?
 
Back
Top