Sep 09 2024 05:56 AM - edited Sep 09 2024 05:57 AM
In my Summary sheet, I would like to go to my Lookup_sheets sheet, pull the names of the other tabs and specifically pull the Start Date (A4) which is located in B4. and add them to the columns in Summary sheet.
Summary sheet
Names Dates(pulled from B4 in multiple sheets, from list in Lookup_sheets)
Already filled in
Lookup_sheet sheet
Meeting 1
Meeting 2
Meeting 3
Meeting 1 sheet (exp)
(A4) Start date (B4) 9/30/24
This way when I add a new meeting sheet it will add the new date on my summary sheet, essentially making an attendance roster.
Sep 09 2024 02:29 PM
I'm not sure if I understood your need. But I'll try to describe a solution based on what I understood (forgive me if it's not correct).
Assuming in the Lookup_sheets worksheet, you have a list of sheet names in cells A1 (Meeting 1, Meeting 2, etc.).
In the Summary worksheet, you can use the INDIRECT function to pull the start date from B4 in each meeting sheet.
In cell B2 of the Summary worksheet (where you want to pull the date from "Meeting 1"), use the following formula:
=INDIRECT("'" & Lookup_sheets!A1 & "'!B4")
Copy this formula to the other cells in column B to fetch the start date from all the meeting sheets listed.
In this way, whenever you add a new meeting sheet to Lookup_sheets and create the respective sheet with the start date in B4, the Summary sheet will automatically update.
Sep 11 2024 05:12 AM
Sep 11 2024 05:35 AM
The INDIRECT function in Excel converts a text string that represents a cell reference into an actual reference. In your case, we want to dynamically construct a reference to cell B4 in different sheets, whose names are listed in the "Lookup_sheets" tab.
If the sheet name contains spaces or special characters (like "Meeting 1"), you need to enclose the name in single quotes (') for Excel to recognize it correctly.
For example:
INDIRECT("'"&Lookup_sheets!A2&"'!B4")
"'" adds the first single quote before the sheet name.
Lookup_sheets!A2 refers to the sheet name (e.g., "Meeting 1").
"'" adds the second single quote after the sheet name.
"'!B4" concatenates the part that refers to the cell you want to access (!B4).
Example:
If the cell Lookup_sheets!A2 contains Meeting 1, the formula will internally convert to:
=INDIRECT("'Meeting 1'!B4")
This tells Excel: “Go to the 'Meeting 1' sheet and get the value in cell B4.”
If you're getting the #REF! error, here are a few checks that might help:
If everything looks correct and the error persists, it may be worth reviewing the formula structure or the data in your sheets.