+ Reply to Thread
Results 1 to 4 of 4

Find Range Function

Hybrid View

  1. #1
    Valued Forum Contributor smuzoen's Avatar
    Join Date
    10-28-2011
    Location
    Brisbane, Australia
    MS-Off Ver
    Excel 2003/2007/2010
    Posts
    610

    Find Range Function

    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.
    Last edited by smuzoen; 07-05-2012 at 08:45 PM. Reason: Amended code - correct error
    Hope this helps.
    Anthony
    Pack my box with five dozen liquor jugs
    PS: Remember to mark your questions as Solved once you are satisfied. Please rate the answer(s) by selecting the Star in the lower left next to the Triangle. It is appreciated?

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Find Range Function

    You can assign default values to the arguments in the signature:

    Public Function FindRange(vWhat As Variant, _
                              rSearch As Range, _
                              Optional LookIn As XlFindLookIn = xlValues, _
                              Optional LookAt As XlLookAt = xlPart, _
                              Optional bMatchCase As Boolean = False) As Range
    
        ' FindRange by Aaron Blood on ozgrid.com/forum
    In addition, and notwithstanding that it appears as an example in Help, this line makes no sense:

              Loop While Not c Is Nothing And c.Address <> firstAddress
    In the code here, c cannot be Nothing (that's already been tested), and if it were, c.Address would generate a runtime error.
    Last edited by shg; 07-05-2012 at 11:56 AM.
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Forum Expert GeneralDisarray's Avatar
    Join Date
    09-15-2011
    Location
    Pittsburgh, PA, USA
    MS-Off Ver
    Windows Excel 2016
    Posts
    1,416

    Re: Find Range Function

    I've been using a similar loop but didn't know about the UNION trick...that kicks a$$
    Remember, saying thanks only takes a second or two. Click the star icon(*) below the post you liked, to give some Rep if you think an answer deserves it.

    Please,mark your thread [SOLVED] if you received your answer.

  4. #4
    Valued Forum Contributor smuzoen's Avatar
    Join Date
    10-28-2011
    Location
    Brisbane, Australia
    MS-Off Ver
    Excel 2003/2007/2010
    Posts
    610

    Re: Find Range Function

    @shg you are dead right - my bad - it should be
    Do
                    Set Find_Range = Union(Find_Range, c)
                    Set c = .FindNext(c)
                Loop While c.Address <> firstAddress

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1