The simplest way would probably be to have an extra column to indicate which row you going to grab data from. I'll just say it's Column C so that it is consistent with previous lines.Originally Posted by cjohnsen
In A1 and down:
=INDIRECT(ADDRESS(C1,COLUMN(T:T),1,1, "sheet 1"))
T3300 is the first row, T13300 is where the increment changes, T23300 is where it changes again, etc.
In C1:
= ROW('sheet 1'!T3300)
In C2 and down:
= IF(C1<ROW('sheet 1'!T13300),C1+25, IF(C1<ROW('sheet 1'!T23300),C1+30,C1+40))
To combine these two formula is possible, but it will be more complicated.
Scott
Bookmarks