Given a column of data here:
13
4
76
8
56
4
7
3
Is there a way to use MATCH() function (or similar) such that it will return the row number of the last blank or non-numeric row it finds? I will accept any solution that can search for either blank of non-numeric
=MATCH("", A:A) returns #N/A instead of 8
If not, is there a way to achieve this without using a script?
Usage: I'm essentially looking for a way to create a range from the last blank cell to the current row.