Hiding ABC and 123

  • Thread starter Thread starter Guest
  • Start date Start date
Hi!

Tools>Options>then uncheck row and column Headers.

Note: its effect only extends to the sheet which is active when you d
it. AFAIK it can't be made to do the whole workbook. Wish it could
sometimes.

Al
 
AlfD > said:
... AFAIK it can't be made to do the whole workbook.
Wish it could, sometimes ..

Try this sub to do it for the whole workbook:

Sub RemoveRowColHeaders()
Dim ws As Worksheet
For Each ws In ActiveWorkbook.Worksheets
ws.Activate
ActiveWindow.DisplayHeadings = False
Next
End Sub
 
Thank you
-----Original Message-----
Click Tools > Options > View tab
Uncheck "Row & column headers" > OK

--
Rgds
Max
xl 97
---
Please respond, in newsgroup
xdemechanik <at>yahoo<dot>com
----



.
 

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

Back
Top