Book Image

101 Excel 2013 Tips, Tricks and Timesavers

By : John Walkenbach
Book Image

101 Excel 2013 Tips, Tricks and Timesavers

By: John Walkenbach

Overview of this book

Excel is a popular program. Millions of people throughout the world use it on a regular basis. But it’s a safe bet that the vast majority of users have yet to discover some of the amazing things this product can do. 101 Excel 2013 Tips, Tricks, & Timesavers?is packed with information that you need to know in order to confidently and seamlessly master the challenges that come with using Excel! Excel 2013 is excellent, but there's lots to learn to truly excel at Excel! In this latest addition to his popular Mr. Spreadsheet's Bookshelf series, John Walkenbach, aka "Mr. Spreadsheet," shares new and exciting ways to accomplish and master all of your spreadsheet tasks. From taming the Ribbon bar to testing and tables, creating custom functions, and overcoming "impossible" charts, mixing nesting limits, and more,?101 Excel 2013 Tips, Tricks, & Timesavers?will save you time and help you avoid common spreadsheet stumbling blocks.
Table of Contents (10 chapters)
Free Chapter
1
Cover
2
Table of Contents
3
Title Page
4
Introduction

Tip 9: Generating a List of Sheet Names

Oddly, Excel doesn’t provide a direct way to generate a list of sheet names in a workbook. This tip describes how to generate a list of all the sheets in a workbook. Like the previous tip (“Generating a List of Filenames”), this tip uses an Excel 4 XLM macro function in a named formula.

Start with a workbook that has lots of worksheets or chart sheets. Then follow these steps to create a list of the sheet names:

1. Insert a new worksheet to hold the list of sheet names.

2. Choose Formulas⇒Define Name to display the New Name dialog box.

3. Type SheetList in the Name field.

4. Enter the following formula in the Refers To field (see Figure 9-1):

=REPLACE(GET.WORKBOOK(1),1,FIND(“]”,GET.WORKBOOK(1)),””)

5. Click OK to close the New Name dialog box.

9781118642184-fg00901.eps

Figure 9-1: Using the New Name dialog box to create a named formula.

Note that this formula uses...