Repeat a formula with interval

K

Kees Vos

Hey,

I need Excel to repeat a formula with a interval of 11. My goal is to get
this:
='DATA LINK'!F14
='DATA LINK'!F25
='DATA LINK'!F36
='DATA LINK'!F47
='DATA LINK'!F58

For 9999 rows.

If I use the chain function, Excel fills in F14, F15, F16 etc.

How do I do this?
 
B

Bob Phillips

=INDIRECT("'DATA LINK'!F"&ROW(A1)*11+3)

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
P

Pete_UK

Here's one way of doing it - put this formula on the first row:

=INDIRECT("'DATA LINK'!F"&ROW()*11+3)

then copy down as required.

Hope this helps.

Pete
 
K

Kees Vos

Hey,
Small change and it worked, formula used is
=INDIRECT("'DATA LINK'!F"&ROW(A1)*11+2;TRUE)

Thanx!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top