Moving Worksheet Tabs to a Different Place

Written by Allen Wyatt (last updated May 17, 2025)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365


2

By default, Excel places the worksheet tabs just below the worksheet and above the status bar. Benny wonders if it is possible to move the tabs to a different side of the worksheet. If he was able to move them to the left or right side, he believes he could see more of them at once.

There is no setting within Excel to indicate where tabs should appear, nor can you drag the tabs area to a different side of the program window. That being said, there are some things you can try.

First, you can use the Navigation pane. Display the View tab of the ribbon and click on the Navigation tool, and the pane appears at the right side of the screen. It defaults to showing all the worksheets in the workbook, but you can expand any worksheet in the pane to display elements of that worksheet.

Further, you can reposition the Navigation pane by hovering the mouse pointer over the top border, just to the right of the title "Navigation." The pointer turns into a four-headed arrow, at which point you can click and drag the Navigation pane to where you prefer it be located.

There are also third-party add-ins for Excel that can provide horizontal worksheet navigation lists. You can find such add-ins through an Internet search, or you can check out these:

If the entire purpose of wanting to move the worksheet tabs is to see more tabs on the screen at once, then there are other things you can try (while leaving the tabs at the bottom of the screen). For instance, you can resize or hide the horizontal scroll bar. You can resize it by clicking on the three dots at the left of the scroll bar and drag to the right. You can turn it off by following these steps:

  1. Display the Excel Options dialog box. (In Excel 2007 click the Office button and then click Excel Options. In Excel 2010 or a later version, display the File tab of the ribbon and then click Options.)
  2. Click the Advanced option at the left of the dialog box.
  3. Scroll through the available options until you find the "Display Options for this Workbook" section. (See Figure 1.)
  4. Figure 1. The Advanced options of the Excel Options dialog box.

  5. Clear the Show Horizontal Scroll Bar check box.
  6. Click OK.

To display even more worksheet tabs, consider renaming your worksheets with shorter names. Excel will adjust the size of the tabs according to the length of the worksheet names and the number of worksheets in the workbook. The shorter the names, the more tabs you can see.

Finally, notice that to the left of the worksheet tabs there is a < and a > character. Hover the mouse over these and you can see that you can use the arrows for navigation. Right-clicking on either arrow displays a list of worksheets in a dialog box, allowing you to easily jump to the one you want.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (10622) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Filtering a Discussion

See exactly what you want to see during your Discussion.

Discover More

Copying Formats to a New Worksheet

Do you want to copy formats from one worksheet to another? You can do so easily by using the Format Painter. It even ...

Discover More

Noting a False Zero On a Chart

When creating charts that will be used by other people, you may need to take some liberties with the presentation of your ...

Discover More

Program Successfully in Excel! This guide will provide you with all the information you need to automate any task in Excel and save time and effort. Learn how to extend Excel's functionality with VBA to create solutions not possible with the standard features. Includes latest information for Excel 2024 and Microsoft 365. Check out Mastering Excel VBA Programming today!

More ExcelTips (ribbon)

Automatically Renaming Worksheets

Excel allows you to easily add and remove worksheets from a workbook. You may want a way to automatically rename all of ...

Discover More

Lotus Grouped Worksheets

Not all spreadsheet programs are created equal; there are some things that can be done in others that can't be done in ...

Discover More

Freezing Top Rows and Bottom Rows

Freezing the top rows in a worksheet so that they are always visible is easy to do. Freezing the bottom rows is not so ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 3 + 5?

2025-05-20 20:48:48

Bob

The MVP's out there could no doubt improve on the code below which is a fairly simple solution to gathering the tab names vertically.
Bob D.

Option Explicit
Option Base 1

Static Sub List_Tab_Names()
'' List only visible sheets
Dim i As Integer
Dim t As String
Dim MyCell
t = "List Tab Names"
Dim Status(-1 To 2) As String
Status(-1) = "Visible"
Status(0) = "Hidden"
Status(2) = "VeryHidden"

On Error GoTo Err_1:
With Application
.ScreenUpdating = False
End With
' Does TabNames Sheet Already Exist?
With ActiveWorkbook
If Evaluate("isref('" & "TabNames'!A1)") Then
GoTo Start_2:
Else
GoTo Start_1:
End If
End With
' If Not Create New Sheet
Start_1:
With ActiveWorkbook
.Sheets.Add Before:=Worksheets(1)
ActiveSheet.Name = "TabNames"
End With
' AND/OR Update new/existing sheet
Start_2:
Sheets("TabNames").Select
[A:A].Select
With Selection
.ClearContents
End With
[A5].Select
With Selection
For i = 1 To Worksheets.Count
If Status(Worksheets(i).Visible) <> Status(-1) Then GoTo Resume_1:
.Offset(i, 0) = Worksheets(i).Name
Resume_1:
Next i
End With
[A1].Select
With ActiveSheet
With .Range("A5:C200")
.Columns.AutoFit
.Sort key1:=ActiveCell, Header:=xlYes
End With
End With
[A6].Select
ActiveCell.CurrentRegion.Select
For Each MyCell In Selection
MyCell.Select
Selection.Hyperlinks.Add Anchor:=Selection, Address:="", SubAddress:=ActiveCell.Value & "!A1"
Next MyCell
' Window Dressing
[A1] = "Created - "
[A2].Value = Date
[A3].Value = Time
[A5].Value = "WB Tab Names:"
[A1:A5].Font.Bold = True
[A1:A5].Font.Color = vbBlack
Columns("A:A").AutoFit
Columns("A:A").HorizontalAlignment = xlCenter
Columns("B:B").Select
ActiveWindow.FreezePanes = True
Selection.Interior.ColorIndex = 15
[A1].Select
GoTo Endline:
Err_1:
MsgBox Error, 16, t
GoTo Endline:

Endline:
With Application
.ScreenUpdating = True
.CutCopyMode = False
End With

End Sub


2025-05-17 14:44:22

J. Woolley

To quickly move from sheet to sheet, use Ctrl+PageDown and Ctrl+PageUp keyboard shortcuts.
To toggle the horizontal scrollbar (and other properties of Excel's window), use My Excel Toolbox's WindowDressing macro (see Figure 1 below) ; you might find it more convenient than the File > Options procedure.
See https://sites.google.com/view/MyExcelToolbox

Figure 1. 


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.