Excel VBA質問箱 IV

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

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


61086 / 76732 ←次へ | 前へ→

【20271】Re:検索(Do・・・Loopを使って)について
回答  Kein  - 04/12/3(金) 23:18 -

引用なし
パスワード
   こんな感じで、やってみて下さい。あとフィルターを使う方法もあります。

Dim MyR As Range, FR As Range
Dim FV As String, Ad As String

Set MyR = Range("B2", Range("B65536").End(xlUp))
MyR.Interior.ColorIndex = xlColorIndexNone
FV = Range("E2").Value
Set FR = MyR.Find(FV, , xlValues)
If FR Is Nothing Then
  MsgBox "検索値が見つかりません", 48
  Set MyR = Nothing: Exit Sub
Else
  Ad = FR.Address
End If
Do
  Set FR = MyR.FindNext(FR)
  FR.Interior.ColorIndex = 3
Loop Until FR.Address = Ad
Set FR = Nothing
0 hits

【20270】検索(Do・・・Loopを使って)について YN61 04/12/3(金) 22:28 質問
【20271】Re:検索(Do・・・Loopを使って)について Kein 04/12/3(金) 23:18 回答
【20468】Re:検索(Do・・・Loopを使って)について YN61 04/12/9(木) 21:56 質問
【20507】Re:検索(Do・・・Loopを使って)について Kein 04/12/10(金) 16:54 発言
【20514】Re:検索(Do・・・Loopを使って)について YN61 04/12/10(金) 21:03 お礼

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