Need a little help:
I have a link in J5 that is =DataIn!O2
I need cell O5 to link to DataIn!O243
, however, I need to do it dymanically as other columns will need to use this as well. I need to be able to copy J5 into O5, T5, etc having the DataIn!O2
increase by 241 each time.
For example when I copy J5 which is =DataIn!O2
,
O5 would be =DataIn!O246
T5 would be =DataIn!O487
Then copy into next row the values would be :
J6 =DataIn!O3
O6 =DataIn!O247
T6 =DataIn!O488
I tried =INDIRECT("DataIn!O"&2+241)
but that did not work.
Any ideas?