Hide Column Letters and Row Numbers in VBA

P

Patrick A

Does anyone know if you can hide the Column Letters and Row Numbers
using VBA?

If so, what's the syntax? I can't seem to find anything on it.

Thanks
 
P

Patrick A

Dave,

Thanks very much!

Wow, you can find out all sorts of stuff that way!

With ActiveWindow
.DisplayGridlines = True
.DisplayHeadings = True
.DisplayWorkbookTabs = True
.DisplayHorizontalScrollBar = True
.DisplayVerticalScrollBar = True
End With
 

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