Get the first non-empty cell in a column in Excel and Google Sheets
=INDEX(A:A, MATCH(FALSE, ISBLANK(A:A), 0)) // doesn't ignore errors
=INDEX(A:A,MATCH(TRUE,INDEX((A:A<>0),0),0)) // ignore errors
=INDEX(A:A,MATCH(TRUE,A:A<>"",0)) // ignore errors
=VLOOKUP("*", A:A, 1,FALSE) // ignore errors
=INDEX(A:A,MATCH(TRUE,INDEX(ISNUMBER(A:A),0),0)) // to get the first numeric value in Excel and ignore errors
=INDEX(A:A,MATCH(TRUE,INDEX(ISTEXT(A:A),0),0)) // to get the first text value in Excel and ignore errors
=MATCH(TRUE,ISERROR(A:A),0) // to get the first error position in Excel
=MATCH(FALSE,ISBLANK(A:A),0) // to get the first non-blank cell position in Excel
A:A = Ranges