Forum Discussion
steve_2931
Oct 25, 2024Copper Contributor
Hiding tabs in excel but retain links to other sheets
Hi, I have created a workbook which has links between each sheet to navigate through the pages. I want to "force" the users to use these links rather than the tabs at the bottom. Is there a way to h...
- Oct 26, 2024
If manually you may uncheck this setting
Please note, it's on workbook basis, not global.
If by VBA you shall use
ActiveWindow.DisplayWorkbookTabs = False
in macro which NikolinoDE suggested, Application.CommandBars("Workbook Tabs").Visible doesn't work.
SergeiBaklan
Oct 26, 2024Diamond Contributor
If manually you may uncheck this setting
Please note, it's on workbook basis, not global.
If by VBA you shall use
ActiveWindow.DisplayWorkbookTabs = False
in macro which NikolinoDE suggested, Application.CommandBars("Workbook Tabs").Visible doesn't work.
- steve_2931Oct 27, 2024Copper ContributorThank you Sergei, much appreciated
- SergeiBaklanOct 31, 2024Diamond Contributor
steve_2931 , you are welcome