How can I find last row that contains data in a specific column?

后端 未结 13 1566
南笙
南笙 2020-11-22 03:44

How can I find the last row that contains data in a specific column and on a specific sheet?

13条回答
  •  抹茶落季
    2020-11-22 04:23

    The first line moves the cursor to the last non-empty row in the column. The second line prints that columns row.

    Selection.End(xlDown).Select
    MsgBox(ActiveCell.Row)
    

提交回复
热议问题