Reference a sheet based on cell value

liampog

Active Member
Joined
Aug 3, 2010
Messages
312
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Hi

I have a Workbook that has a number of tabs along the bottom that are named individual names of employees.

On a front page Worksheet, in Column A, I have the same employee names down the column.

In Column B, I would like to point to B11 on each of the Worksheets that share the same name as the value in the first Column.

I hope this makes sense. I'm sure there's a way to do this but not sure how.

It's essentially a dynamic reference to a cell based upon the value in Column A.

Thanks
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Yes with INDIRECT. This will do the trick. But it will not automatically update the reference to B11 if you insert or delete rows or columns.
Excel Formula:
=INDIRECT("'" & A1 & "'!B11")
 
Upvote 0
Here is a more robust version that is relocatable and will adjust for inserted rows or columns on the employee sheet.

Excel Formula:
=INDIRECT("'" & A1 & "'!" & ADDRESS(ROW($B$11),COLUMN($B$11)))
 
Upvote 0
Solution
6StringJazzer, awesome! Thanks for your help!

And now that you have told me, it's funny because I have used this formula before for the exact same thing, just couldn't remember which formula.
 
Upvote 0
You're welcome! Go ahead and mark my post as the solution to show your thread is solved.
 
Upvote 0

Forum statistics

Threads
1,221,446
Messages
6,159,917
Members
451,603
Latest member
SWahl

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