Pulling data from other sheet while skipping cells

Giovanni

New Member
Joined
Dec 10, 2009
Messages
49
I have data that is copied from another sheet.

Sheet 1 Worksheet has data in Column A: For example, in A1, the data will read "11",, A2 reads "12",,, A3 reads "13"

Sheet 2 Worksheet is pulling data from Sheet 1 and putting it into the B Column. For example, in B1, the data reads ="Sheet 1'!A1",, or the value "11"

In sheet 2, I do not want any data in cells B2 or B3,,, I would like the next cell of data to be in B4... which will read "Sheet 1!A2" ,, or the value "12"

My intention is to have a formula in sheet 2, where every 3 rows down in B column, it only takes 1 row down from sheet 1 A column.

Is there a way to skip cells like that?



thanks!!

Gio
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Sheet2

A1, copy down:

=IF(MOD(ROW($A1)-ROW($A$1),3)=0,INDEX(Sheet1!$A$1:$A$100,ROUNDUP(ROWS($A$1:A1)/3,0)),"")
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,693
Members
448,979
Latest member
DET4492

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