Cell Reference Question

ckserra

New Member
Joined
Aug 25, 2017
Messages
8
Hi everyone, good morning. I am adding a "Purchase Order Recap" page to a large Excel file for purchase orders. I am trying to easily pull in 4 different cells from each page. Issue is we have 300+ POs. The individual POs are setup the same. Is there a way to add the formula I need for each cell, for instance ,
Excel Formula:
='GD22-0525'!$E$16
, and drag down so it moves to GD22-0526, 0527 ETC.

If not, if the first column is PO number and I manually make that column accurate, how can I use that column as the Sheet reference in other cells, such as date and vendor? So instead of
Excel Formula:
='GD22-0525'!$E$16
it would look like =A2&!$E$16 or something like that.

Thank you so much for your time!
Chris
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
=INDIRECT("'"&A2&"'!$E$16")

i'm sure it possible to do the 1st option, just not sure at the moment
 
Upvote 0
Solution
=INDIRECT("'"&A2&"'!$E$16")

i'm sure it possible to do the 1st option, just not sure at the moment
Thats great, that works, thank you! What would be the best way to SUM g19:g50 on those cells using Indirect? Ive tried a few different formulas with no luck.
THank you again.
Excel Formula:
=sum(INDIRECT(a2&g19:g50)
 
Upvote 0
=SUM(INDIRECT("'"&A2&"'!G19:G50"))

indirect is a volatile function , so every time you touch the spreadsheet - it has to recalculate the value - and if you have a lot of indirect functions - can slow the spreadsheet down
 
Upvote 0
=SUM(INDIRECT("'"&A2&"'!G19:G50"))

indirect is a volatile function , so every time you touch the spreadsheet - it has to recalculate the value - and if you have a lot of indirect functions - can slow the spreadsheet down
Understood and thank you gain for your help!
 
Upvote 0

Forum statistics

Threads
1,215,419
Messages
6,124,796
Members
449,189
Latest member
kristinh

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