I am using offset function to convert tabular data into column as follows;
Table has the form
A B
1
3 4
I am using the offset function of the form
=OFFSET($A$1:$B$2,TRUNC((ROW()-ROW($A$10))/COLUMNS($A$1:$B$2)),MOD(ROW()-ROW($A$10),COLUMNS($A$1:$B$2)),1,1)
whereby from cell A10 down column A i get;
1
0
3
4
But i would like to skip the blank cell B1 which returns 0 and i want the column be as
1
3
4
I will appreceate for any assistance
Bookmarks