Skip to main content

Posts

Showing posts with the label last column number in excel vba

last column number

Sub last_column() Dim kk As Long kk = Cells(1, Columns.Count).End(xlToLeft).Column End Sub