Find last row in range

前端 未结 11 2044
傲寒
傲寒 2020-12-02 00:41

I\'m having a little trouble with finding the last row.

What I am trying to do is find the last row in column "A", then use that to find the last row within

11条回答
  •  旧时难觅i
    2020-12-02 01:19

    Before getting into complex coding why not build something on the below principle:

    MaxRow = Application.Evaluate("MIN(ROW(A10:C29)) + ROWS(A10:C29) - 1")

提交回复
热议问题