Simple formula = every 3rd cell

Dan_D

Board Regular
Joined
Oct 26, 2009
Messages
78
Hi All,

I seem to be stuck on the most simple formula and hope someone can kindly please help.

I have a list of data in column A and in column B. I simply want to have a formula that increase the reference cell by three in each instance.

For example

Cell B1 = A1
Cell B2 = A3
Cell B3 = A5
Cell B3 = A7

and so on, yet if i try to auto fill this formula down from here on it goes back to A2 in cell B4.

Any suggestions are appreciated.

Thank you in advance.
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Hi All,

I seem to be stuck on the most simple formula and hope someone can kindly please help.

I have a list of data in column A and in column B. I simply want to have a formula that increase the reference cell by three in each instance.

For example

Cell B1 = A1
Cell B2 = A3
Cell B3 = A5
Cell B3 = A7

and so on, yet if i try to auto fill this formula down from here on it goes back to A2 in cell B4.

Any suggestions are appreciated.

Thank you in advance.
B1, enter and copy down:

=INDEX($A$1:$A$9,3*(ROWS($B$1:B1)-1))
 
Upvote 0
Many thanks for your assistance. Can you please the formula to me as I would like to use this formula again, however using an increment of 4 cells

A1
A4
A7
A10
A13

Thank you.
 
Upvote 0
Many thanks for your assistance. Can you please the formula to me as I would like to use this formula again, however using an increment of 4 cells

A1
A4
A7
A10
A13

Thank you.

=INDEX($A$1:$A$90,4*(ROWS($B$1:B1)-1))

Or you can enter 4 in a cell of its own, say, in E1, and invoke:

=INDEX($A$1:$A$90,$E$1*(ROWS($B$1:B1)-1))
 
Upvote 0
Many thanks for your prompt response, however the formula is not working correctly at the moment.

According to the formula

=INDEX($A$1:$A$90,4*(ROWS($B$1:B1)-1))

Is it giving the following results.

B1 = A1
B2 = A4
B3 = A8 (should be A7)
B4 = A12 (should be A10)

Any advice on how to resolve this please?
 
Upvote 0
Many thanks for your prompt response, however the formula is not working correctly at the moment.

According to the formula

=INDEX($A$1:$A$90,4*(ROWS($B$1:B1)-1))

Is it giving the following results.

B1 = A1
B2 = A4
B3 = A8 (should be A7)
B4 = A12 (should be A10)

Any advice on how to resolve this please?

Are you trying to do an arbitrary number of every 4th value intermixed with an arbitrary number of every 3rd value? If so, how do we know when start and when end?
 
Last edited:
Upvote 0
Sorry for the confusion I have fixed the issue.

I put your formula in B1 and then in cell B2 changed the following

=INDEX($A$1:$A$9,3*(ROWS($B$1:B1)-1))

to

=INDEX($A$2:$A$9,3*(ROWS($B$1:B1)-1))

now it works thank-you.
 
Upvote 0
Sorry for the confusion I have fixed the issue.

I put your formula in B1 and then in cell B2 changed the following

=INDEX($A$1:$A$9,3*(ROWS($B$1:B1)-1))

to

=INDEX($A$2:$A$9,3*(ROWS($B$1:B1)-1))

now it works thank-you.

Great. Thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,224,595
Messages
6,179,798
Members
452,943
Latest member
Newbie4296

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