Skip to main content

Excel dynamic worksheet or workbook reference

Supposing you have data with the same format across multiple worksheets or workbooks and need to get data from these worksheets or workbooks dynamically into another sheet. The INDIRECT function can help you quickly get it done.

Reference cells in another worksheet dynamically
Reference cells in another workbook dynamically


Reference cells in another worksheet dynamically

Supposing there are four worksheets containing different sales in quarters for four salesmen, and you want to create a summary worksheet to dynamically pull the quarter sales based on the corresponding salesman. To make it work, the below formula can help.

Generic formula

=INDIRECT("'"&sheet_name&"'!Cell to return data from")

1. As the below screenshot shown, firstly, you need to create the summary worksheet by entering the sheet names separately in different cells, then select a blank cell, copy the below formula into it and press the Enter key.

=INDIRECT("'"&B3&"'!C3")

Notes: In the code:

  • B3 is the cell containing the sheet name you will pull data from;
  • C3 is the cell address in the specific worksheet you will pull its data;
  • To prevent returning the error value if either B5 (the sheet name cell) or C3 (the cell you will pull the data) is empty, please enclose the INDIRECT formula with an IF function displaying as below:
    =IF(OR(B3="",C3=""),"",INDIRECT($B$3&"!C3"))
  • If there are no spaces in your sheet names, you can directly use this formula
    =INDIRECT(B3&"!C3")

2. Then, drag its Fill Handle down to apply the formula to other cells. Now you have returned all sales of the first quarter from the specific worksheets.

3. Go ahead to pull all sales of other quarters as you need. And don’t forget to change the cell reference in the formula.


Reference cells in another workbook dynamically

This section is talking about dynamically referencing cells in another workbook in Excel.

Generic formula

=INDIRECT("'[" & Book name & "]" & Sheet name & "'!" & Cell address)

As the below screenshot shown, The data you want to return locating in column E of worksheet “Total sales” in a separate workbook named “SalesFile”. Please do as follows step by step to get it done.

1. Firstly, let’s fill in the workbook information (including the workbook name, worksheet name, and reference cells), which you will pull data based on this information into current workbook.

2. Select a blank cell, copy the below formula into it and press the Enter key.

=INDIRECT("'["&$B$3&"]"&$C$3&"'!"&D3)

Notes:

  • B3 contains the workbook name where you want to extract the data from;
  • C3 is the sheet name;
  • D3 is the cell you will pull data from;
  • The #REF! error value will return if the referenced workbook is closed;
  • To avoid the #REF! error value, please enclose the INDIRECT formula with the IFERROR function as follows:
    =IFERROR(INDIRECT("'["&$B$3&"]"&$C$3&"'!"&D3),"")

3. Then drag the Fill Handle down to apply the formula to other cells.

Tip: If you don’t want the return value turning to be error after closing the referenced workbook, you can directly specify the workbook name, worksheet name and the cell address in the formula as this:
=INDIRECT('[SalesFile.xlxs]Total sales'!E3,"")


Related function

The INDIRECT function
The Microsoft Excel INDIRECT function converts a text string to a valid reference.


The Best Office Productivity Tools

Kutools for Excel - Helps You To Stand Out From Crowd

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or Identify Duplicates  |  Delete Blank Rows  |  Combine Columns or Cells without Losing Data  |  Round without Formula ...
Super VLookup: Multiple Criteria  |  Multiple Value  |  Across Multi-Sheets  |  Fuzzy Lookup...
Adv. Drop-down List: Easy Drop Down List  |  Dependent Drop Down List  |  Multi-select Drop Down List...
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  Compare Columns to Select Same & Different Cells ...
Featured Features: Grid Focus  |  Design View  |  Big Formula Bar  |  Workbook & Sheet Manager | Resource Library (Auto Text)  |  Date Picker  |  Combine Worksheets  |  Encrypt/Decrypt Cells  |  Send Emails by List  |  Super Filter  |  Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters ...)  |  50+ Chart Types (Gantt Chart ...)  |  40+ Practical Formulas (Calculate age based on birthday ...)  |  19 Insertion Tools (Insert QR Code, Insert Picture from Path ...)  |  12 Conversion Tools (Numbers to Words, Currency Conversion ...)  |  7 Merge & Split Tools (Advanced Combine Rows, Split Excel Cells ...)  |  ... and more

Kutools for Excel Boasts Over 300 Features, Ensuring That What You Need is Just A Click Away...

Description


Office Tab - Enable Tabbed Reading and Editing in Microsoft Office (include Excel)

  • One second to switch between dozens of open documents!
  • Reduce hundreds of mouse clicks for you every day, say goodbye to mouse hand.
  • Increases your productivity by 50% when viewing and editing multiple documents.
  • Brings Efficient Tabs to Office (include Excel), Just Like Chrome, Edge and Firefox.
Comments (1)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
please get back with me. it's been a while since i used cel references. what i want to do is from a column of entires, i wish to make a new column and grab every 100th row of the prior column. let's say i have cells filled in F3, F103, F203...i want the contents to appear in G3,G4,G5. it doesn't work to say =(F3+100*counter) with having a counter in a column next to where i am having the formula.
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations