I've always used OFFSET like so
keycolumn = OFFSET($A$2,,,COUNTA($A$2:$A$5000))
Second column =OFFSET(keycolumn,,1)
etc.
The problem with that is blanks will screw up everything.
I've seen on here (can't find the thread but I think it was Donkeyote
EndRow =MATCH(9E+307, $A:$A, 1)
Then
keycolumn = INDEX($A:$A, 2):INDEX($A:$A, EndRow)
Second Column =INDEX($B:$B, 2):INDEX($B:$B, EndRow)
etc.
Any disadvantages to using this technique?
How about combining the two and developing the key column with method 2 and then using the OFFSET for other columns.
Any other ways to set up this type of dynamic range?
Bookmarks