I'm doing a lot of spreadsheets right now in Excel, and one thing that really gets on my nerves is the Work sheet tabs being right at the bottom of the page, is there anyway I am able to move them?
If they annoy you then you can hide them:- Tools,Options View tab
Or via a macro, which you can assign to a toolbar button or hot key combination
Code:
Sub ToggleSheetTabs()
If ActiveWindow.DisplayWorkbookTabs = True Then
ActiveWindow.DisplayWorkbookTabs = False
Else
ActiveWindow.DisplayWorkbookTabs = True
End If
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.