ref cell in another worksheet

brett316

New Member
Joined
Aug 4, 2011
Messages
15
Could anyone let me know how to do a cell reference and then add a number of rows and reference it again please?

so e.g.

='Worksheet'!F20 is the first row

then I need to reference F79, so 59 rows down and then another 59 rows down etc etc. There is a big list so what is the easiest way to refernce this? Can you do something like F20+59 reference, F79+59 reference and so on?

Hope that makes sense

Cheers.

Brett
 

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
here is how to do it for a sheet:

Code:
=INDIRECT("Sheet3!"&ADDRESS(5,5))

that will reference sheet3's cell of E5

then you can add in stuff in address such as
row()+10 or whatever you need to get the adjustments as you copy down.
 
Last edited:
Upvote 0
Thanks OFFSET works well but then how do I get the row that is being referenced in the forumla to then be the starting cell for the next?

So the first references F20, then the second is 59 rows down i.e. F79, then how do I make the next formula start with F79 and then add on another 59? And so on and so on. Because I will need to copy the formula all the way down and at the moment the next fornula just adds 1 onto the reference cell.
 
Upvote 0
Say you have a formula in row 4 somewhere referring to F20, and you want the formula in the row below to refer to F79, you could use row() which returns the row number of the formula that the cell is in and some arithmetic giving he likes of:
=OFFSET($F$20,(ROW()-4)*59,)
starting in row 4 and copied down.
 
Upvote 0

Forum statistics

Threads
1,224,596
Messages
6,179,807
Members
452,944
Latest member
2558216095

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