Hi, this formula works. But i'm sure there is a simpler solution the find the next non blank row! Any non array methods?
Basically I will be creating a lookup, but instead of the user typing the row number, they just use sequential numbers (1 - 100) and excel translate this index to the next blank row
=SMALL(IF(A1:A17<>"",A1:A17*ROW(A1:A17),""),5)
Cells A1 : A17 in this instance would contain
1
1
1
1
""
""
1
1
""
""
1
1
1
1
""
""
1
1
1
Basically I will be creating a lookup, but instead of the user typing the row number, they just use sequential numbers (1 - 100) and excel translate this index to the next blank row
=SMALL(IF(A1:A17<>"",A1:A17*ROW(A1:A17),""),5)
Cells A1 : A17 in this instance would contain
1
1
1
1
""
""
1
1
""
""
1
1
1
1
""
""
1
1
1