Excel VBA質問箱 IV

当質問箱は、有志のボランティア精神のおかげで成り立っています。
問題が解決したら、必ずお礼をしましょうね。
本サイトの基本方針をまとめました。こちら をご一読ください。

投稿種別の選択が必要です。ご注意ください。
迷惑投稿防止のため、URLの入力を制限しています。ご了承ください。


19990 / 76732 ←次へ | 前へ→

【62167】Re:マクロのシート名を変更する方法ってありますか?
回答  Hirofumi  - 09/6/25(木) 19:51 -

引用なし
パスワード
   ごめん、

    Application.Intersect(.CurrentRegion, .CurrentRegion.Offset(1)).EntireRow.Delete

は、
    Application.Intersect(.CurrentRegion, .CurrentRegion.Offset(1)) _
        .SpecialCells(xlCellTypeVisible).EntireRow.Delete

の間違い

因って以下の様に修正して下さい

  With Sheets(strSheetname).Range("A1")
    .AutoFilter Field:=9, Criteria1:="ワンルーム"
    .CurrentRegion.Copy Destination:=Sheets("ワンルーム").Range("A1")
    Application.Intersect(.CurrentRegion, .CurrentRegion.Offset(1)) _
        .SpecialCells(xlCellTypeVisible).EntireRow.Delete
    .AutoFilter
    '
    .AutoFilter Field:=8, Criteria1:="1"
    .CurrentRegion.Copy Destination:=Sheets("1部屋").Range("A1")
    Application.Intersect(.CurrentRegion, .CurrentRegion.Offset(1)) _
        .SpecialCells(xlCellTypeVisible).EntireRow.Delete
    .AutoFilter
    '
    .AutoFilter Field:=8, Criteria1:="2"
    .CurrentRegion.Copy Destination:=Sheets("2部屋").Range("A1")
     Application.Intersect(.CurrentRegion, .CurrentRegion.Offset(1)) _
        .SpecialCells(xlCellTypeVisible).EntireRow.Delete
    .AutoFilter
    '
    .AutoFilter Field:=8, Criteria1:="3"
    .CurrentRegion.Copy Destination:=Sheets("3部屋").Range("A1")
    Application.Intersect(.CurrentRegion, .CurrentRegion.Offset(1)) _
        .SpecialCells(xlCellTypeVisible).EntireRow.Delete
    .AutoFilter
    '
    .CurrentRegion.Copy Destination:=Sheets("4部屋").Range("A1")
    .CurrentRegion.EntireRow.Delete
  End With

0 hits

【62156】マクロのシート名を変更する方法ってありますか? じゅんこ 09/6/25(木) 13:21 質問
【62159】Re:マクロのシート名を変更する方法ってあ... Hirofumi 09/6/25(木) 15:01 発言
【62161】Re:マクロのシート名を変更する方法ってあ... じゅんこ 09/6/25(木) 16:00 発言
【62165】Re:マクロのシート名を変更する方法ってあ... Hirofumi 09/6/25(木) 18:59 回答
【62166】Re:マクロのシート名を変更する方法ってあ... じゅんこ 09/6/25(木) 19:36 お礼
【62167】Re:マクロのシート名を変更する方法ってあ... Hirofumi 09/6/25(木) 19:51 回答
【62168】Re:マクロのシート名を変更する方法ってあ... Hirofumi 09/6/25(木) 23:22 回答
【62160】Re:マクロのシート名を変更する方法ってあ... イブX 09/6/25(木) 15:10 発言
【62162】Re:マクロのシート名を変更する方法ってあ... じゅんこ 09/6/25(木) 16:16 発言

19990 / 76732 ←次へ | 前へ→
ページ:  ┃  記事番号:
2610219
(SS)C-BOARD v3.8 is Free