- ベストアンサー
行を削除するマクロ
- みんなの回答 (1)
- 専門家の回答
質問者が選んだベストアンサー
sub macro1() dim h as range if application.count(range("A:A")) = 0 then exit sub set h = range("A:A").find(what:=application.max(range("A:A")), lookin:=xlvalues, lookat:=xlwhole, searchdirection:=xlprevious) range(range("A2"), h).entirerow.delete shift:=xlshiftup end sub みたいな。
お礼
どうもありがとうございます。