Reference value from a table and copy to every 3 rows down on another sheet

LarsAustin

New Member
Joined
Feb 27, 2016
Messages
16
Hi All,

Greetings from Auckland, New Zealand.

It is my first time to post in this forum. I need the help of excel experts here. I am working on a time series spreadsheet which tracks supply levels of our products.

What I want to do is to get the item codes and item descriptions in Sheet2 and copy it to Column A and Column B in Sheet1 respectively but on every 3 rows after. In cell A1 in Sheet1, I can reference the value in cell A2 in Sheet2 and I can do the same for cell B2 so it will be copied to cell B1 in Sheet1 (which will give me 1221 in cell A1 and ABC in cell B1 in Sheet1). But how can I get the value in cell A3 and B3 from Sheet2 to cell A4 and B4 in Sheet1 and the value in cell A4 and B4 from Sheet2 to cell A7 and B7 in Sheet1?

I have hundreds of products so referencing it manually will be a pain. I want a formula that I can just copy and paste and give me the desired result. I am working on large file so ideally I do not want a volatile function like OFFSET.

Thank you in advance.

Sheet1
AB
1=Sheet2!A2=Sheet2!B2
2
3
4
5
6
7

<tbody>
</tbody>


Sheet2
AB
1Item CodeItem Description
21221ABC
31222DEF
41223GHI

<tbody>
</tbody>
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Hi. The volatile function makes no difference if you are going to copy and paste. This formula is dependant on its position in the sheet so has to be started in A1 of Sheet1. Copy down as far as required:

=IF(MOD(ROW(),3)=1,INDIRECT("Sheet2!A"&((ROW()+2)/3)+1),"")
 
Upvote 0

Forum statistics

Threads
1,215,232
Messages
6,123,759
Members
449,120
Latest member
Aa2

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