Making formula increment when copy/paste

curiousgeorgeuk

New Member
Joined
Dec 14, 2017
Messages
5
I have a sheet that i would like to copy and paste a formula across 100 columns, however Sheet 1 (data) has 100, and sheet 2 has 200. The reason for this is Sheet 2 pulls in the data then each Column has an additional column next to this for manual in put or a value.

Sheet 1.

Column
1 2 3 4 5 6 7 8 9 10

Sheet 2
1 A 2 A 3 A 4 A 5 A 6 A 7 A 8 A 9 A 10 A

I want Sheet 2, to pull in the column titles from sheet 1. Is this possible with a formula, Or do i need to do each one individually?

Thanks
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
This assumes there is no data in the even numbered columns of Sheet 2, ie where youve put A's

in Sheet2!A1

=IF MOD(COLUMN(),2)<>0,INDEX(Sheet1!A1:ZZ1,1,INT(COLUMN()-1)/2+1,"")
and copy across for 200 columns
 
Upvote 0

Forum statistics

Threads
1,223,231
Messages
6,170,884
Members
452,364
Latest member
springate

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