Copying data with skipping rows

Guerrilla

New Member
Joined
May 24, 2017
Messages
2
I have a list of part numbers I need to copy. In Sheet B I have Values from B3-B1027. I am trying to create a form to ensure each part has gone through a Safety checklist. To do this I am Copying B3-B1027 to Sheet A. But when I am copying to Sheet A I need to skip 55 lines.

Ex. A1='SheetB'!B3, A56='SheetB'!B4, and so on.

Any help would be greatly appreciated.
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
let us say you have only 7 numbers in B3 to B9

temp=2
for j=1 to 331 step 55
temp=temp+1
cells(j,1)=sheetb!cells(temp,1)
next j
end sub
 
Upvote 0

Forum statistics

Threads
1,214,952
Messages
6,122,454
Members
449,083
Latest member
Ava19

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