How to return to last active sheet in Excel?
For a workbook with amount of worksheets, it is not easy for you to toggle between two frequently used worksheets. Actually, only the VBA code, or Office add-in can help you quickly return to the last active worksheet in Excel. Please do as below methods show.
Return to last active sheet with VBA code
Return to last active sheet with Kutools for Excel
Return to last active sheet with VBA code
You can run the below VBA codes to return to the last active sheet in Excel.
1. Press Alt + F11 to open the Microsoft Visual Basic Application window.
2. In the Microsoft Visual Basic Application window, double click ThisWorkbook on the left pane, then copy and paste below code into the ThisWorkbook(Code) window.
VBA code: Return to last active sheet
Private Sub Workbook_SheetDeactivate(ByVal Sh As Object)
Set LstSht = Sh
End Sub
3. Then click Insert > Module to open the Module window. Then paste the below code into the window.
VBA code: Return to last active sheet
Public LstSht As Worksheet
Sub GoToLast()
LstSht.Activate
End Sub
3. Go back to the workbook, shift between the worksheets. Then go back to the Microsoft Visual Basic Application window again. Press the F5 key to run the code. Then you will return to the last active sheet after pressing the F5 key. Repeat pressing the F5 key, the windows will be toggled between these two worksheets.
Return to last active sheet with Kutools for Excel
The Kutools for Excel’s Shift between last and current sheet utility can help you to quickly return to last active sheet with just one click in Excel. Please do as follows.
Before applying Kutools for Excel, please download and install it firstly.
After installing Kutools for Excel, the Navigation Pane will display on the left side in Excel automatically.
1. After shifting from one worksheet to another, click the Switch between last and current worksheet button in the Workbook & Sheet section will return to the last active sheet. See the below demo:
Notes:
If you want to have a free trial (30-day) of this utility, please click to download it, and then go to apply the operation according above steps.
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!
