Don't think I do either but..........<g>
The Not .whatever can be used to toggle many items.
With Selection
.WrapText = Not .WrapText
.Font.Bold = Not .Font.Bold
End With
Or simply
Selection.WrapText = Not Selection.WrapText
Gord
Cool Gord.........I don't understand it, but cool........
Vaya con Dios,
Chuck, CABGx3
"Gord Dibben" <gorddibbATshawDOTca> wrote in message
Or this...........
Sub ToggleTabs()
With ActiveWindow
.DisplayWorkbookTabs = Not .DisplayWorkbookTabs
End With
End Sub
Gord Dibben MS Excel MVP