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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hide row/column numbers in Excel

Status
Not open for further replies.

pr24

Programmer
Nov 23, 2001
66
NO
Is it possible to hide the row numbers(1,2,3,4...) and the column numbers(A,B,C,D...) in Excel?
 
Yup - Tools > Options > View
Untick Row and Column Headers

In code :
With ActiveWindow
.DisplayHeadings = False
End With

and a little BTW whilst we're on the subject

With ActiveWindow
.DisplayHeadings = False
.DisplayHorizontalScrollBar = False
.DisplayVerticalScrollBar = False
.DisplayWorkbookTabs = False
End With

will disable (Hide) Row and Col headers / Horiz and vert scroll bar and tabs

HTH
Geoff
 
Tools - Options - View - un-check "Row and column headers"

Regards, ...Dale Watson dwatson@bsi.gov.mb.ca
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top