Excel VBA VBA|マクロを移動する 他のブックにマクロを移動したいとき、こんな方法があります。移動というかコピーですが、、 ブックを開いて移動する ファイルにしてから移動する ■ブックを開いて移動する マクロがあるブック と マ... 2023.06.25 Excel VBA
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