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, 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.
Solve Real Business Problems Master business modeling and analysis techniques with Excel and transform data into bottom-line results. This hands-on, scenario-focused guide shows you how to use the latest Excel tools to integrate data from multiple tables. Check out Microsoft Excel 2013 Data Analysis and Business Modeling today!
Got a bunch of charts that you need to make formatting changes in? You can use a macro (or two) to apply the formatting ...
Discover MoreWhen sending a chart to someone else, it can be frustrating for the other person to open the workbook and see errors ...
Discover MoreUnhappy with the default size that Excel uses for embedded chart objects? You can't change the size at which they are ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2018-07-05 10:18:01
J. Woolley
Please consider the SHEET::NAME technique discussed here:
http://dailydoseofexcel.com/archives/2018/07/02/hyperlink-formula-events/#comment-1045646
2018-04-23 03:08:54
Go To is very powerfull for selecting fields with the same attributes, especially GoTo "Blanks" or "Errors". For example you can easily select all fields with errors and change backround color to red or highlight blank fields with missing informations.
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 © 2022 Sharon Parq Associates, Inc.
Comments