Drag formual to the right by every other column

sdoppke

Well-known Member
Joined
Jun 10, 2010
Messages
647
Hi everyone, could someone help me figure out how to drag a simple "=A1" formula, so it increases by every other column?

i.e.
=a1
=c1
=e1
=g1

Thanks a ton, in advance!

sd
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Try something like this...

=INDEX(1:1,1,COLUMN(A1)*2-1)


Youve bailed me out again AlphaFrog! :) I forgot to mention that the refereced row and columns are on another sheet. Is it the 1:1,1 that i adjjust for that? and also that i will be draging the formula down...
sd
 
Upvote 0
References Sheet2 row 1 every other column as you drag down...

=INDEX(Sheet2!$1:$1,1,ROW(A1)*2-1)


Index will reference a cell within a defined range based on row\column index numbers. If the defined range is Row 1 then for example index 1, 3 of that range would be cell C3.

This part of the formula...
ROW(A1)*2-1
...simply increases the column index by 2 as you drag the formula down.

Put this formula in any cell and drag it down to see how it increments the column index number.
=ROW(A1)*2-1
 
Last edited:
Upvote 0

Forum statistics

Threads
1,224,604
Messages
6,179,857
Members
452,948
Latest member
UsmanAli786

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