Skip to content
Free Excel Tutorials
  • Home
  • Excel For Beginners
  • Excel Intermediate
  • Advanced Excel For Experts

Data Analysis

  • How To Filter Data in Excel
  • Conditional Formatting Color Scales Examples in Excel
  • How to create Checklist in Excel
  • How to create running total in an Excel Table
  • How to conditionally sum numeric data in an Excel table using SUMIFS

References

  • How to calculate two-way lookup VLOOKUP in Excel Table
  • Excel Advanced Lookup using Index and Match Functions
  • How to use Excel LOOKUP Function
  • How to use Excel INDIRECT Function
  • How to reference named range different sheet in Excel

Data Validations

  • Prevent invalid data entering in specific cells
  • Data validation must not exist in list
  • How To Create Drop-down List in Excel
  • Excel Data validation date in next 30 days
  • Excel Data validation date in specific year

How to create dynamic reference table name in Excel

by

To build a formula with a dynamic reference to an Excel Table name, you can use the INDIRECT function with concatenation as needed.

Formula

=SUM(INDIRECT(table&"[column]"))

Note: INDIRECT is a volatile function and can cause performance issues in larger, more complex workbooks.

Explanation

In the example shown, the formula in L5 is:

=SUM(INDIRECT(K5&"[Amount]"))

Which returns the SUM of Amounts for three tables named “West”, “Central”, and “East”.

How this formula works

This formula behaves like these simpler formulas:

=SUM(West[Amount])
=SUM(Central[Amount])
=SUM(East[Amount])

However, instead of hardcoding the table into each SUM formula, the table names are listed in column K, and the formulas in column L use concatenation to assemble a reference to each table. This allows the same formula to be used in L5:L7.

The trick is the INDIRECT function to evaluate the reference.

We start with:

=SUM(INDIRECT(K5&"[Amount]"))

which becomes:

=SUM(INDIRECT("West"&"[Amount]"))

and then:

=SUM(INDIRECT("West[Amount]"))

The INDIRECT function then resolves the text string into a proper structured reference:

=SUM(West[Amount])

And the SUM function returns the final result, 27,500 for the West region.

Post navigation

Previous Post:

How to calculate project complete percentage in Excel

Next Post:

Popularly Used Excel Functions and their examples

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Learn Basic Excel

Ribbon
Workbook
Worksheets
Format Cells
Find & Select
Sort & Filter
Templates
Print
Share
Protect
Keyboard Shortcuts

Categories

  • Charts
  • Data Analysis
  • Data Validation
  • Excel Functions
    • Cube Functions
    • Database Functions
    • Date and Time Functions
    • Engineering Functions
    • Financial Functions
    • Information Functions
    • Logical Functions
    • Lookup and Reference Functions
    • Math and Trig Functions
    • Statistical Functions
    • Text Functions
    • Web Functions
  • Excel VBA
  • Excel Video Tutorials
  • Formatting
  • Grouping
  • Others

Logical Functions

  • IF with wildcards in Excel
  • Not Equal To ‘<>‘ operator in Excel
  • How to use Excel FALSE Function
  • Extract multiple matches into separate rows in Excel
  • Excel If, Nested If, And/Or Criteria Examples

Date Time

  • Convert time to time zone in Excel
  • How to show last updated date stamp in Excel
  • How to get year from date in Excel
  • Dynamic date list in Excel
  • How to calculate nth day of year in Excel

Grouping

  • Categorize text with keywords in Excel
  • Group numbers with VLOOKUP in Excel
  • How to randomly assign people to groups in Excel
  • Group times into 3 hour buckets in Excel
  • Map text to numbers in Excel

General

  • How to calculate profit margin percentage in Excel
  • Share Excel data with Word documents
  • How to set or clear a print area in Excel Worksheet
  • How to get original number from percent change in Excel
  • How to calculate percent of goal in Excel
© 2026 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning