Answers for "how to reference last non empty cell in a column"

VBA
4

excel formula for last non-empty cell in a column

'Excel formulas.

'Last filled cell in column A, confirm with Ctrl-Shift-Enter:
=INDEX(A:A,MAX((A:A>"")*(ROW(A:A))))


'Row number of last filled cell in column A, confirm with just Enter:
=INDEX(MAX((A:A>"")*(ROW(A:A))),1)
Posted by: Guest on March-30-2020

Code answers related to "how to reference last non empty cell in a column"

Code answers related to "VBA"

Browse Popular Code Answers by Language