dynamic cell refs

Raggy

Board Regular
Joined
Jul 30, 2008
Messages
70
Office Version
  1. 2010
Platform
  1. Windows
I have data on one sheet called 'Bill Bloggs - Mandatory" and his name is in Cell B4, now I want to be able to fill the cells across using the same formula to pull the data from the sheet ;Bill Bloggs Mandatory'. The sheet where the formula is called 'Staff Record'.
I can do the parametric for the name or the sheet to use as there will be other sheets such as 'Bill Brown - Mandatory' for names in the staff name column but cant figure out how to fill them across parametrically. I can see in my formula C7 is 'hard coded' but how to I make C7 parametic to pull of the data from the other sheets. Use another 'INDIRECT' for that one as well? My attempts have failed so far!
1685124106919.png
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Try:

Excel Formula:
=INDIRECT("'" & $B7 & " - Mandatory'!C7")
 
Upvote 0
Yes I got that bit to work si I can copy the cells down, but it was the C7 ref wich is in another sheet I need to make parametric as well. If I copy the cells across I would have to manually update C7 to D7 and E7 etc
 
Upvote 0
does it move over and down, or just down?


Yes I got that bit to work si I can copy the cells down, but it was the C7 ref wich is in another sheet I need to make parametric as well. If I copy the cells across I would have to manually update C7 to D7 and E7 etc
It is hard to tell what cell your FIRST formula is. But you need to calculate the first two components of this formula and include it in the concatenation of C7 in your INDIRECT formula:

ADDRESS(7,3,4)

So, if your FIRST concatentation formula is in cell C4, Somethng like this:

ROW(C4)+3 COLUMN(C4)+0 (I added the "+ 0" to show you where to add or subtract a number.

Excel Formula:
=INDIRECT("'" & $B7 & " - Mandatory'!" &    ADDRESS(ROW(C4)+3,COLUMN(C4)+0,4)  )
 
Upvote 0
does it move over and down, or just down?



It is hard to tell what cell your FIRST formula is. But you need to calculate the first two components of this formula and include it in the concatenation of C7 in your INDIRECT formula:

ADDRESS(7,3,4)

So, if your FIRST concatentation formula is in cell C4, Somethng like this:

ROW(C4)+3 COLUMN(C4)+0 (I added the "+ 0" to show you where to add or subtract a number.

Excel Formula:
=INDIRECT("'" & $B7 & " - Mandatory'!" &    ADDRESS(ROW(C4)+3,COLUMN(C4)+0,4)  )



If this doesn't work. please post an xl2bb mini workbook of 3 of your worksheets. I'm not going to try to recreate all of that manually.
 
Upvote 0

Forum statistics

Threads
1,223,230
Messages
6,170,883
Members
452,364
Latest member
springate

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