combining sheets

ecarney14

New Member
Joined
Sep 21, 2006
Messages
42
Is there a simple way to take a sheet of data and paste it on another sheet in every other column?

For example: Sheet 1
a b c d

Sheet 2
1 2 3 4

Sheet 3
a 1 b 2 c 3 d 4

thanks
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Here is a VBA solution:

Code:
Sub Combine_Sheets()
Dim X As Long

X = 1

Do Until X = 257
        Sheets("Sheet1").Columns(X).Copy Sheets("Sheet3").Columns(X)
        X = X + 2
Loop

X = 2

Do Until X = 258
        Sheets("Sheet2").Columns(X).Copy Sheets("Sheet3").Columns(X)
        X = X + 2
Loop

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,400
Messages
6,119,292
Members
448,885
Latest member
LokiSonic

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