Hide Column Letters and Row Numbers in VBA

  • Thread starter Thread starter Patrick A
  • Start date Start date
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
 
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
 
Back
Top