Excel VBA質問箱 IV

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

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


61924 / 76732 ←次へ | 前へ→

【19419】Re:最も新しい年のデータを選ぶ
回答  Jaka  - 04/11/1(月) 12:27 -

引用なし
パスワード
   Sub vivi()
  Dim VsR1 As Range, VsR2 As Range, VsR3 As Range, MxYer As Long
  Dim cc As Range, tb() As String
  AER = Range("A65536").End(xlUp).Row
  Range("A1:A" & AER).AdvancedFilter Action:=xlFilterInPlace, Unique:=True
  Set VsR1 = Range("A2:A" & AER).SpecialCells(xlVisible)
  ActiveSheet.ShowAllData
  ReDim tb(1 To VsR1.Count)
  For Each cc In VsR1
    i = i + 1
    tb(i) = cc
  Next
  Set VsR1 = Nothing
  For i = 1 To UBound(tb)
    AER = Range("A65536").End(xlUp).Row
    Range("A1").AutoFilter Field:=1, Criteria1:=tb(i)
    Set VsR2 = Range("B2:B" & AER).SpecialCells(xlVisible)
    MxYer = Application.Max(VsR2)
    Range("A1").AutoFilter Field:=2, Criteria1:="<" & MxYer, Operator:=xlAnd
    Set VsR3 = Range("B2:B" & AER).SpecialCells(xlVisible)
    VsR3.EntireRow.Delete
    ActiveSheet.ShowAllData
    DoEvents
  Next
  Set VsR2 = Nothing: Set VsR3 = Nothing
  Erase tb
End Sub
0 hits

【19404】最も新しい年のデータを選ぶ mai 04/10/31(日) 17:15 質問
【19405】Re:最も新しい年のデータを選ぶ ちゃっぴ 04/10/31(日) 17:30 回答
【19417】Re:最も新しい年のデータを選ぶ mai 04/11/1(月) 10:42 質問
【19418】Re:最も新しい年のデータを選ぶ かみちゃん 04/11/1(月) 12:24 発言
【19419】Re:最も新しい年のデータを選ぶ Jaka 04/11/1(月) 12:27 回答
【19422】Re:最も新しい年のデータを選ぶ mai 04/11/1(月) 13:38 お礼

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