Referencing to a Sheet in Excel Formula

mikewongbiz

New Member
Joined
Jan 25, 2015
Messages
19
Hi All,

I have two sheets and one called Week1.

This formula works for me from the other sheet:

=INDEX(Week1!$G$3:$G$50,MATCH($C6,Week1!$B$3:$B$50,0))

However, I would like to replace Week1 in the formula with a text string I type say in cell A1. This is where I get stuck. Can someone shed some light for me, thanks in advance !

For example: I tried a few things like: =INDEX("$A1"!$G$3:$G$50,MATCH($C6,"$A1"!$B$3:$B$50,0)), I may need to use Indirect Function ? But this is where I get stuck.
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Maybe...

=INDEX(INDIRECT("'"&A1&"'!$G$3:$G$50"),MATCH($C6,INDIRECT("'"&A1&"'!$B$3:$B$50"),0))

M.
 
Upvote 0

Forum statistics

Threads
1,215,960
Messages
6,127,942
Members
449,411
Latest member
sdescharme

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