Create a list of cell values across multiple sheets

Nate J

New Member
Joined
Feb 5, 2023
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Good day,

I'm trying to consolidate information across multiple sheets into one sheet. I've been trying a few different things but cannot seem to be able to figure this one out.

I need to have a list of all the values that appear in "T11" across multiple sheets. All my sheets are named Sheet1, Sheet2, Sheet3, etc.

I was trying some things like {="Sheet" & Row() & "!T11"}. However, this doesn't quite work, it just displays it as Sheet3!T11 in the cell and doesn't give back a value from sheet 3, cell T11.

I've tried Index, as I need this done in mass across all sheets from SheetX to SheetY, where x and y are the minimum and maximum value of sheets I need. However, this just returns errors.

Any assistance would be appreciated.
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Hold up, figured it out.

Doing this:
In Columns A, B & C
C outputs what I want.
=ROW()​
="Sheet"&A3​
=INDIRECT(B3&"!T11")​
 
Upvote 0
If your sheets are consecutive you can use vstack like
Excel Formula:
=VSTACK(Sheet1:Sheet3!T11)
 
Upvote 0

Forum statistics

Threads
1,213,546
Messages
6,114,256
Members
448,557
Latest member
richa mishra

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top