0
最後の行が計算された範囲を選択する正しい方法は何ですか。1004アプリケーション定義またはオブジェクト定義のエラー
Sub My_Script()
Dim LastRow As Long
With ActiveSheet
LastRow = .Cells(.Rows.Count, "D").End(xlUp).Row
End With
ActiveSheet.Range(Cells(LastRow, Columns("D:AH"))).Select
End Sub