I have used this so much I cannot do without it - it is a quick method to find all the ranges within a range than containing a value. The function is
Function Find_Range(Find_Item As Variant, _
Search_Range As Range, _
Optional LookIn As Variant, _
Optional LookAt As Variant, _
Optional MatchCase As Boolean) As Range
Dim c As Range
If IsMissing(LookIn) Then LookIn = xlValues 'xlFormulas
If IsMissing(LookAt) Then LookAt = xlPart 'xlWhole
If IsMissing(MatchCase) Then MatchCase = False
With Search_Range
Set c = .Find( _
What:=Find_Item, _
LookIn:=LookIn, _
LookAt:=LookAt, _
SearchOrder:=xlByRows, _
SearchDirection:=xlNext, _
MatchCase:=MatchCase, _
SearchFormat:=False)
If Not c Is Nothing Then
Set Find_Range = c
firstAddress = c.Address
Do
Set Find_Range = Union(Find_Range, c)
Set c = .FindNext(c)
Loop While c.Address <> firstAddress
End If
End With
End Function
This can be called with
Set myRange = Find_Range(myVar, Worksheets("Sheet1").Columns("A"), xlValues, xlWhole)
Then simple matter of iterating through myRange to get all the ranges with the value. Could not live without this great function. Very robust.
Bookmarks