Excel VBA VBA|最終列を取得する データの最終列を取得する Sub 最終列の取得() Dim endClm As Long endClm = Cells(1, Columns.Count).End(xlToLeft).Column MsgBo... 2023.05.28 Excel VBA
Excel VBA VBA|最終行を取得する データの最終行を取得する Sub 最終行の取得() Dim endRow As Long endRow = Cells(Rows.Count, "A").End(xlUp).Row MsgBox endRow... 2023.05.27 Excel VBA