Skip X cells when dragging a simple formula

Lia33

New Member
Joined
Sep 12, 2011
Messages
6
Hi Lovely all,

I'm trying to drag a formula but would like to skip two columns.
I have 2 sheets.
Sheet 1 with results and the other with column A originals, B actuals, C difference.
Sheet 2 has only originals.

So if I drag it goes: ='Sheet 1'A2, ='Sheet 1'B2, ='Sheet 1'C2, etc...
What I would like is ='Sheet 1'A2, ='Sheet 1'D2, ='Sheet 1'H2, etc...

Does anyone know how to do this without having to create a Macros?

I really hope you can help me:confused:

Many thanks
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Welcome to the board..

Try

=INDEX('Sheet 1'!2:2,((COLUMNS($A:A)-1)*3)+1)

Do not change COLUMNS($A:A)-1
It has nothing to do with the location of your data.

the 3 represents the interval (every 3 columns)
the +1 is the column # to begin in.


Hope that helps.
 
Upvote 0
Hi Lovely all,

I'm trying to drag a formula but would like to skip two columns.
I have 2 sheets.
Sheet 1 with results and the other with column A originals, B actuals, C difference.
Sheet 2 has only originals.

So if I drag it goes: ='Sheet 1'A2, ='Sheet 1'B2, ='Sheet 1'C2, etc...
What I would like is ='Sheet 1'A2, ='Sheet 1'D2, ='Sheet 1'H2, etc...

Does anyone know how to do this without having to create a Macros?

I really hope you can help me:confused:

Many thanks
Try this...

Leyt's assume you want to enter the first formula in cell A1 and copy across.

=INDEX('Sheet 1'!2:2,COLUMNS($A1:A1)*3-2)
 
Upvote 0
Nope :(

I need to start on column F as column A has titles and even when dragging the formula it comes up with a different result as the adjacent columns.

It should come with 43.11 and comes up with 45.72....

Not sure what's the problem.
 
Upvote 0
Try

=INDEX('Sheet 1'!2:2,((COLUMNS($A:A)-1)*3)+6)

Welcome to the board..

Try

=INDEX('Sheet 1'!2:2,((COLUMNS($A:A)-1)*3)+1)

Do not change COLUMNS($A:A)-1
It has nothing to do with the location of your data.

the 3 represents the interval (every 3 columns)
the +1 is the column # to begin in.


Hope that helps.
 
Upvote 0
Thank you Jonmo1!!!

It does work!!:biggrin:

The explanation made it all happen, I just had to change the number referring to the column to start with and now it works!!

Thank you sooooo much everyone!!!
 
Upvote 0
I know this thread is from a few years ago but I have the reverse problem and thought it easiest to use this background.

I have a sheet where I want to compare results to two new versions. The results are copied from another source which puts them in sequential columns.

I am entering the new data so copying across is not an issue I will be typing over it.

Data in source sheet starts from D10

Can this be done?
 
Upvote 0

Forum statistics

Threads
1,214,832
Messages
6,121,843
Members
449,051
Latest member
excelquestion515

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