Answers for "vba count all row"

VBA
0

vba count all row

Sub CountRows1()
    Dim last_row As Long
    last_row = Cells(Rows.Count, 1).End(xlUp).Row
    MsgBox (last_row)
End Sub
Posted by: Guest on October-04-2021

Code answers related to "VBA"

Browse Popular Code Answers by Language