📌  相关文章
📜  列中最后一个非空单元格的excel公式 - VBA代码示例

📅  最后修改于: 2022-03-11 14:51:57.232000             🧑  作者: Mango

代码示例1
'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)