Have every nth cell in a column refer to every rth in a different sheet?

samweise

New Member
Joined
Sep 27, 2014
Messages
5
Hi All,

I am trying to have every 118th cell in a column of one sheet refer to every 9th cell of a column in another sheet. Any way to do this?

Thanks,
Sam
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Entered in row 1, this refers to Sheet1!A1:

=INDEX(Sheet1!$A:$A, INT(9/118*(ROW()-1) + 1)

Entered in row 119, it refers to Sheet1!A2.
 
Upvote 0
Entered in row 1, this refers to Sheet1!A1:

=INDEX(Sheet1!$A:$A, INT(9/118*(ROW()-1) + 1)

Entered in row 119, it refers to Sheet1!A2.


Thanks! This works for the first and 118th rows, but after that it doesn't seem to work. Any advice?
 
Upvote 0
Sure it does:

A​
B​
C​
1​
$A$1$A$1
B1: =INDEX(Sheet1!$A:$A,INT(9/118*(ROW()-1)+1))​
119​
$A$119$A$10
237​
$A$237$A$19
355​
$A$355$A$28
 
Upvote 0

Forum statistics

Threads
1,215,232
Messages
6,123,768
Members
449,122
Latest member
sampak88

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