Hide sheet tabs section

How to hide the sheet tabs section at the bottom of the workbook using Excel and VBA methods

METHOD 1. Hide sheet tabs section

EXCEL

File tab Options > Advanced > Display options for this workbook > Uncheck Show sheet tabs checkbox

1. Select the File tab. Select File tab

2. Click on Options. Click on Options

3. Select the Advanced tab. Select Advanced

4. Scroll down to Display options for this workbook section.
5. Uncheck the Show sheet tabs checkbox.
Display options for workbook and uncheck show sheet tabs

6. Click OK. Click OK

METHOD 1. Hide sheet tabs section using VBA

VBA

Sub Hide_sheets_tab_section()
'hide sheet tabs
ActiveWindow.DisplayWorkbookTabs = False

End Sub

Explanation about how to hide sheet tabs section

EXPLANATION

EXPLANATION

This tutorial shows how to hide the sheet tabs section at the bottom of the workbook using Excel and VBA methods.
This tutorial provides one Excel method that can be applied to hide the sheet tabs section. This is achieved in six steps by adjusting the workbook's options.
Using VBA the sheet tabs can be hidden by setting the DisplayWorkbookTabs to False.

RELATED TOPICS

Related Topic Description Related Topic and Description
How to show the sheet tabs section at the bottom of the workbook using Excel and VBA methods
How to hide gridlines in a worksheet using Excel and VBA methods
How to show gridlines in a worksheet using Excel and VBA methods
How to hide gridlines in a workbook using Excel and VBA methods
How to hide gridlines in multiple worksheets using Excel and VBA methods