That didn't seem to work - but I'm sure there is some way...
modify to suit. Obviously, won't work for the FIRST one.
=IF(INDIRECT("sheet22!a"&ROW(A1)*4)<=0,"",INDIRECT("sheet22!a"&ROW(A1)*4))

Signature
Don Guillett
SalesAid Software
dguillett1@austin.rr.com
> That didn't seem to work - but I'm sure there is some way...
>
[quoted text clipped - 26 lines]
>> > Thanks,
>> > DevDave
Don was saying to use this formula (I modified it) & fill down:
=IF(OFFSET('Message Details'!$C$93,ROW(A1)*4-4,0) <= 0,"",OFFSET('Message
Details'!$C$93,ROW(A1)*4-4,0))
Bob Umlas
Excel MVP
> That didn't seem to work - but I'm sure there is some way...
>
[quoted text clipped - 26 lines]
> > > Thanks,
> > > DevDave
orbii - 30 Dec 2006 01:51 GMT
=OFFSET(A1,ROW(A1)*3-3,0)
bob i think *3-3 be more correct on the skipping part....
aloha n happy new year, orbii
> Don was saying to use this formula (I modified it) & fill down:
> =IF(OFFSET('Message Details'!$C$93,ROW(A1)*4-4,0) <= 0,"",OFFSET('Message
[quoted text clipped - 34 lines]
>> > > Thanks,
>> > > DevDave
devdave@gmail.com - 03 Jan 2007 22:05 GMT
Bob -
This: =IF(OFFSET('Message Details'!$C$93,ROW(A1)*4-4,0) <=
0,"",OFFSET('Message
Details'!$C$93,ROW(A1)*4-4,0))
Works Great.
I guess I don't understand how 'offsets' work as I don't know what
"Row(a1)*4-4,0" is doing that makes this work.
But it is producing the correct offset and result from the other
worksheet.
> Don was saying to use this formula (I modified it) & fill down:
> =IF(OFFSET('Message Details'!$C$93,ROW(A1)*4-4,0) <= 0,"",OFFSET('Message
[quoted text clipped - 33 lines]
> > > > Thanks,
> > > > DevDave
devdave@gmail.com - 03 Jan 2007 22:59 GMT
So I went and looked at what OFFSET does and what ROW does and this all
makes perfect sense now!
You would think that with Excel - there would be an easier way to
OFFSET based on a Selected Series that increments in a set pattern, but
this worked fine :)
Thanks for all your input.
DevDave
> Bob -
>
[quoted text clipped - 47 lines]
> > > > > Thanks,
> > > > > DevDave
Ragdyer - 04 Jan 2007 01:19 GMT
Here's another way ... which is non-volatile.
This procedure also *doesn't* lend itself to a description of being easier,
but it can be perhaps more intuitive, if you just examine the math involved
=IF(INDEX('Message Details'!C:C,4*ROWS($1:23)+1)<= 0,"",INDEX('Message
Details'!C:C,4*ROWS($1:23)+1))
And copy down as needed.

Signature
Regards,
RD
---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
> So I went and looked at what OFFSET does and what ROW does and this all
> makes perfect sense now!
[quoted text clipped - 57 lines]
> > > > > > Thanks,
> > > > > > DevDave