How to lock a sheet position for always visible in Excel Workbook?
If there are multiple sheets in a workbook, when you navigate to the last sheet, the first sheet becomes hidden in the sheet tab bar, as shown below. Now you want to lock a master sheet’s position to keep it always visible, how can you handle it?
![]() | ![]() | ![]() |
Lock sheet position with VBA
Here I introduce two VBA codes for you to handle this job.
Jump to specific sheet using a shortcut
1. Press Alt + F11 keys to enable the Microsoft Visual Basic for Windows.
2. Click Insert > Module, then copy and paste below code to the script.
VBA: Jump to the master sheet
Sub GoToSheet()
'UpdatebyExtendoffice20180427
Sheets("Master").Activate
End Sub
Note: In the code slice of Sheets("Master").Activate, you can change the Master to any sheet name as you need.
3. Then save this code, and go back to the workbook, click Developer > Macros.
4. In the Macro dialog, select the code name you inserted just now, click Options, create a shortcut for running this code.
5. Click OK and close the Macro dialog.
From right now, while pressing the shortcut you created, the master sheet will be activated regardless of the sheet currently in use.
Keep a specific sheet always in the front
1. Press Alt + F11 keys to enable the Microsoft Visual Basic for Windows.
2. Double click ThisWorkbook from the Project-VBAProject pane, and copy and paste below code to the script.
VBA: Keep sheet always in the front
Private Sub Workbook_SheetActivate(ByVal Sh As Object)
'UpdatebyExtendoffice2018027
Dim xSheet As Worksheet
Application.EnableEvents = False
Set xSheet = Sheets("master")
If Sh.Name <> xSheet.Name Then
Sh.Move , xSheet
xSheet.Activate
Sh.Activate
End If
Application.EnableEvents = True
End Sub
3. Save the code and close the VBA window. From now, whichever sheet you select, the master sheet will always stay at the front of the tab bar.
![]() | ![]() | ![]() |
Note: In above code, “master” is the sheet name you want to keep visible, change it as you need.
Best Office Productivity Tools
Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time. Click Here to Get The Feature You Need The Most...
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
All Kutools add-ins. One installer
Kutools for Office suite bundles add-ins for Excel, Word, Outlook & PowerPoint plus Office Tab Pro, which is ideal for teams working across Office apps.





- All-in-one suite — Excel, Word, Outlook & PowerPoint add-ins + Office Tab Pro
- One installer, one license — set up in minutes (MSI-ready)
- Works better together — streamlined productivity across Office apps
- 30-day full-featured trial — no registration, no credit card
- Best value — save vs buying individual add-in