Possible to hide column headers???

  • Thread starter Thread starter T-®ex
  • Start date Start date
T

T-®ex

Hi! I'd like to know if it's possible to hide the column (and row)
"headers" in Excel... If it is, how do I do it?
 
Hi T-®ex,

Tools | Options | View | deselect 'Row & Column headers'

If you need to do this programmatically, try something like:

ActiveWindow.DisplayHeadings = False
 
Hi T-®ex,

I used the code below

Range("Headers").EntireRow.Hidden = True - For a Named range
Rows("1:1").EntireRow.Hidden = True
Columns("A:A").EntireColumn.Hidden = True


Tempy
 
Back
Top