I've not come across that message before - are you using XL2007, and is this
another one of those "helpful" messages that MS programmers seem prone to
use?
Changing the value in A1 will have no effect on this formula - the ROW(A1)
part returns the number 1, which gets multiplied by 4 and has 1 added on
(giving 5). When it is copied down it becomes ROW(A2), ROW(A3), ROW(A4) etc,
returning 2, 3, 4 etc, which in turn become 9, 13, 17, which are the rows
you want to access.
Did you use the correct worksheet name in your formula? If you have spaces
in the sheet name then you will have to include apostrophes, like so:
=INDIRECT("'worksheet b'!B"&ROW(A1)*4+1)
(one after the first quote and one before the exclamation mark).
Hope this helps.
Pete
> Hi Pete,
>
[quoted text clipped - 50 lines]
>> >
>> > Please help!
Pablo - 27 Mar 2008 17:42 GMT
Pete,
It worked! I inserted the apostrophes and the target column to the new
formula.
Thanks a lot for your help! This formula really helps us a lot.
Cheers,
Pablo
> I've not come across that message before - are you using XL2007, and is this
> another one of those "helpful" messages that MS programmers seem prone to
[quoted text clipped - 71 lines]
> >> >
> >> > Please help!
Pete_UK - 27 Mar 2008 17:58 GMT
Glad to hear that, Pablo - thanks for feeding back.
Pete
> Pete,
>
[quoted text clipped - 89 lines]
>> >> >
>> >> > Please help!