Referring to ranges of cells is one of the very basic skills necessary to effectively use Excel. As you start to create ever-more-complex formulas, you may wonder if there is a way to refer, in a range reference, to a "stack" of cells on multiple worksheets, the same as you can refer to rows or columns on the current worksheet. For instance, the following formula is a way to refer to all cells in column B:
=SUM(B:B)
Note that you don't have to provide a starting or ending row; you just have to provide the column name. You can likewise do the same thing for row references. The following refers to the range of all cells in row 3:
=SUM(3:3)
The problem with referencing all the cells in a set position across a range of worksheets is that there is no unique "collection name" to apply to cells in that position. For instance, rows have numbers and columns have letters. "Stacks" of cells across worksheets don't have a comparable name.
The only way, then, that you can refer to the same cell across a range of worksheets is the rather explicit way that Microsoft dictates. For instance, the following refers to the range at cell D5 across three sheets:
=SUM(Sheet1:Sheet3!D5)
Understanding that sheets must be named in the range, you can include an ever-expanding range by simply making sure that you only add new worksheets between the beginning and ending sheets specified in your formula.
As an example, let's assume that you have a template for an invoice, and that your workbook contains all the invoices you have created this year. Further, each invoice has a total at cell F15. If you want a summary worksheet that shows a total for all invoices, all you need to do is make sure that your first invoice is the first worksheet in your workbook, that your invoice template is the second to last, and that your summary worksheet is the last one in the workbook. In this way, your formula could be something like:
=SUM(Inv01001:InvTemplate!F15)
Whenever you need to add a new invoice, simply make sure it is added immediately before the invoice template. Your invoices remain in order, and your formula always returns the correct total.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (2514) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Totaling Across Worksheets.
Dive Deep into Macros! Make Excel do things you thought were impossible, discover techniques you won't find anywhere else, and create powerful automated reports. Bill Jelen and Tracy Syrstad help you instantly visualize information to make it actionable. You’ll find step-by-step instructions, real-world case studies, and 50 workbooks packed with examples and solutions. Check out Microsoft Excel 2019 VBA and Macros today!
Excel is often used to analyze data collected over time. In doing the analysis, you may want to only look at data ...
Discover MoreGiven a range of cells, you may at some time want to calculate the sum of only the largest values in that range. Here is ...
Discover MoreIf you have a large amount of data in a worksheet and you want to extract information from the text that meets certain ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon 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