Apr 15, 2002 #1 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?
Apr 15, 2002 #2 xlbo MIS Mar 26, 2002 15,080 GB 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 Upvote 0 Downvote
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
Apr 15, 2002 #3 DaleWatson123321 Programmer Jun 12, 2001 1,788 CA Tools - Options - View - un-check "Row and column headers" Regards, ...Dale Watson dwatson@bsi.gov.mb.ca Upvote 0 Downvote
Tools - Options - View - un-check "Row and column headers" Regards, ...Dale Watson dwatson@bsi.gov.mb.ca