Written by Allen Wyatt (last updated December 16, 2023)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365
When you want to jump to a specific worksheet in a workbook, you can use the Go To feature of Excel to make the jump painless, in the following manner:
This works great for regular worksheets, but it won't work if you want to jump to a chart sheet. Why? Because Go To is used to jump to specific cells (in this case, cell A1 on MySheet), and chart sheets have no cells you can reference.
If you want a quick way to jump to a chart sheet, you will need to resort to a macro. You can have the macro ask for a chart sheet name, and then use the Activate or Select methods with the sheet name. The pertinent line of the macro—the one that does the actual "jumping"—can be either of these:
Sheets("MyChart").Activate Sheets("MyChart").Select
All you need to do is substitute the proper name of the chart sheet in place of "MyChart."
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (7735) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Using Go To to Jump to a Chart Sheet.
Best-Selling VBA Tutorial for Beginners Take your Excel knowledge to the next level. With a little background in VBA programming, you can go well beyond basic spreadsheets and functions. Use macros to reduce errors, save time, and integrate with other Microsoft applications. Fully updated for the latest version of Office 365. Check out Microsoft 365 Excel VBA Programming For Dummies today!
Want to change an existing bar chart to a different type of chart, such as a line chart or a column chart? It's easy to ...
Discover MoreNeed to generate a chart in the fastest possible way? Just use this shortcut key and you'll have one faster than you can ...
Discover MoreIf you need to create a chart that uses logarithmic values on both axes, it can be confusing how to get what you want. ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2023-12-18 12:34:47
J. Woolley
For related discussion, see https://excelribbon.tips.net/T003591_Picking_Worksheets_Quickly.html
and https://excelribbon.tips.net/T007094_Jumping_to_a_Specific_Worksheet.html
2023-12-17 17:23:07
Tomek
I think, clicking on the tab for that chart sheet is still easiest, but if there are so many sheets that you don't see all of them, you can right click on the grey area to the left of the tabs and select the sheet or chart in the Activate dialog box that opens.
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.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments