Custom text in formula/function

EUROSTOXX

New Member
Joined
Aug 3, 2011
Messages
14
I have a formula that I am trying to Fill Down, (example =A1 ) but I want the formula to skip every 4 rows, so the fill down should go, = A1, (next cell down)= A5, (next cell down) = A9, = A13 respectively. I tried to use the fill series with steps, but it only worked if I had numbers in the cell, not a formula/reference

any idea

Thanks
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Take a look at the INDIRECT function in conjunction with the ROW() function, which returns the current row number.

Let's say in your example:
in cell B1, you wanted to return the value in cell A1
in cell B2, you wanted to return the value in cell A5
in cell B3, you wanted to return the value in cell A9
...

Then in cell B1, enter this formula and copy down as far as you want.
=INDIRECT("A" & ROW()*4-3)
 
Upvote 0
I have a formula that I am trying to Fill Down, (example =A1 ) but I want the formula to skip every 4 rows, so the fill down should go, = A1, (next cell down)= A5, (next cell down) = A9, = A13 respectively. I tried to use the fill series with steps, but it only worked if I had numbers in the cell, not a formula/reference

any idea

Thanks
Here's another one.

Let's assume you want the results starting in cell D1 and copied downward.

Enter this formula in D1 and copy down as needed:

=INDEX(A:A,ROWS(D$1:D1)*4-4+1)
 
Upvote 0
Nice! They both work

You guys are amazing! I would have never figured that out.

I will take a look at both functions later on to see exactly how they work but so far they do the job just plug and play.

Thanks again
 
Upvote 0
Nice! They both work

You guys are amazing! I would have never figured that out.

I will take a look at both functions later on to see exactly how they work but so far they do the job just plug and play.

Thanks again
You're welcome. Thanks for the feedback! :cool:
 
Upvote 0

Forum statistics

Threads
1,224,599
Messages
6,179,827
Members
452,946
Latest member
JoseDavid

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