Autofill cell references with a pattern of every 110 rows

L

Light

I'm trying to use autofill to copy cell references from a different
workbook/sheet. On the worksheet i'm trying to copy from, the data i would
like to organize and bring into the new worksheet is always in the same
column, but every 110 rows. For instance, what I want to do is this, for
every row in one column, and use autofill to do it because it would be much
easier than adding 110 to the row and typing it in myself:

=Sheet1'!B10
=Sheet1'!B120
=Sheet1'!B230
=Sheet1'!B340

when I try to use autofill to do this, it copies all three rows again, but
increased by however many rows i try to copy:

=Sheet1'!B10
=Sheet1'!B120
=Sheet1'!B230
=Sheet1'!B13
=Sheet1'!B123
=Sheet1'!B233

Is there any way to use Autofill to copy down a cell reference that occurs
every X rows?

Thanks!
 
P

Pete_UK

Try this formula in the first cell:

=INDIRECT("'Sheet1'!B"&(ROW(A1)-1)*110+10)

and then copy it down for as many rows as you need.

Hope this helps.

Pete
 
N

Nada Youssef

Hi Shane,
Can you please elaborate on this formula.
I'm trying to apply to my own worksheet,but it doesn't seem to work out.Why did u manage to put 110-100?
I want to apply to various locations (every 74 rows,every 50 rows of course in different sheets).
Thanks in advance.
Nada



ShaneDevenshir wrote:

Hi,Here is one way to do this=INDIRECT("Sheet1!
13-Oct-08

Hi

Here is one way to do thi

=INDIRECT("Sheet1!B"&ROW(A1)*110-100

-
Thanks
Shane Devenshir

:

Previous Posts In This Thread:

Autofill cell references with a pattern of every 110 rows
I'm trying to use autofill to copy cell references from a different
workbook/sheet. On the worksheet i'm trying to copy from, the data i would
like to organize and bring into the new worksheet is always in the same
column, but every 110 rows. For instance, what I want to do is this, for
every row in one column, and use autofill to do it because it would be much
easier than adding 110 to the row and typing it in myself

=Sheet1'!B1
=Sheet1'!B12
=Sheet1'!B23
=Sheet1'!B34

when I try to use autofill to do this, it copies all three rows again, but
increased by however many rows i try to copy

=Sheet1'!B1
=Sheet1'!B12
=Sheet1'!B23
=Sheet1'!B1
=Sheet1'!B12
=Sheet1'!B23

Is there any way to use Autofill to copy down a cell reference that occurs
every X rows

Thanks!

Enter this in row 1 and copy down=INDIRECT("Sheet1!
Enter this in row 1 and copy dow
=INDIRECT("Sheet1!B"&(10+(ROW()-1)*110)
-
If you find this post helpful pl. choose "Yes"..

:

Hi,Here is one way to do this=INDIRECT("Sheet1!
Hi

Here is one way to do thi

=INDIRECT("Sheet1!B"&ROW(A1)*110-100

-
Thanks
Shane Devenshir

:

Re: Autofill cell references with a pattern of every 110 rows
Try this formula in the first cell

=3DINDIRECT("'Sheet1'!B"&(ROW(A1)-1)*110+10

and then copy it down for as many rows as you need

Hope this helps

Pet

oul
o
c

s


Submitted via EggHeadCafe - Software Developer Portal of Choice
Custom Favorites Web Site with MongoDb and NoRM
http://www.eggheadcafe.com/tutorial...favorites-web-site-with-mongodb-and-norm.aspx
 

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