Possible to hide column headers???

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?
 
N

Norman Jones

Hi T-®ex,

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

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

ActiveWindow.DisplayHeadings = False
 
T

Tempy

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
 

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

Top