+ Reply to Thread
Results 1 to 5 of 5

VBA find method and named range not working

Hybrid View

  1. #1
    Registered User
    Join Date
    05-04-2012
    Location
    USA
    MS-Off Ver
    excel 2010
    Posts
    25

    VBA find method and named range not working

    So I am trying to keep track of my budget using excel. Each month I paste various information, including expense descriptions, into a worksheet and assign the value in the descriptions category to an expense category and subcategory.

    I am trying to find the matching description in a named range on Sheet8("Match") and then return the offset (1 column and 2 columns to the right of the match) to automatically populate the category and subcategory information.

    I've put together the below code from some bits and pieces I've found online. However, the code only works ONCE. It returns the matching expense category and subcategory for the FIRST matching description in Range G13:G15, i.e., subsequent descriptions each have the same expense category/sub-category as the first item.

    Any ideas on what I'm doing wrong?

    Sub FindCategory()
         
        Dim rFound As Range
        Dim sFind As Range
        Dim sAddr As String
         
        Set sFind = ActiveSheet.Range("G13:G18")
        
        With Sheet8.Range("Match")
            Set rFound = .Find(What:=sFind, _
            LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
            MatchCase:=False, SearchFormat:=False)
                If Not rFound Is Nothing Then
                    sAddr = rFound.Address
                    Do
                        sFind.Offset(0, 1).Value = rFound.Offset(0, 1)
                        sFind.Offset(0, 2).Value = rFound.Offset(0, 2)
                        Set rFound = .FindNext(rFound)
                    Loop While rFound.Address <> sAddr
                End If
        End With
         
    End Sub

  2. #2
    Administrator 6StringJazzer's Avatar
    Join Date
    01-27-2010
    Location
    Tysons Corner, VA, USA
    MS-Off Ver
    MS 365 Family 64-bit 2502
    Posts
    26,835

    Re: VBA find method and named range not working

    I'm not sure I understand what you're trying to do, especially without seeing your file. It would help to see how your data is laid out.

    First, Find is only going to find the value in G13. It isn't going to look for matches across multiple cells that match the entire range G13:G18. I can't tell what your intention is there, but you may be misunderstanding how Find works.

    The coding for Find and FindNext seem to be fine, but I notice that you are putting the results into the same two cells each time. sFind never changes, and so when you assign a value to sFind.Offset(0, 1).Value, it is always the same cell (BTW it will always be H13). I don't think that explains the problem you are describing but it might not be what you intend to do.

    Oh, and we can't see how Match is defined so we can't confirm that the named range is what you want it to be. That could certainly be a problem, too.
    Last edited by 6StringJazzer; 10-29-2012 at 10:04 PM. Reason: Added last sentence
    Jeff
    | | |會 |會 |會 |會 | |:| | |會 |會
    Read the rules
    Use code tags to [code]enclose your code![/code]

  3. #3
    Registered User
    Join Date
    05-04-2012
    Location
    USA
    MS-Off Ver
    excel 2010
    Posts
    25

    Re: VBA find method and named range not working

    6StringJazzer,

    You have partially clarified my problem.
    Range G13:G15 currently looks like this:

    T-Mobile
    CVS
    Home Depot

    So after I run the code I get:

    T-Mobile Bills/Utilities Mobile Phone
    CVS Bills/Utilities Mobile Phone
    Home Depot Bills/Utilities Mobile Phone

    So I think the problem I have is that find works on G13 and doesn't do a new find for G14 and G15. It it possible to Loop through all cells in a range and perform a find on each?

  4. #4
    Administrator 6StringJazzer's Avatar
    Join Date
    01-27-2010
    Location
    Tysons Corner, VA, USA
    MS-Off Ver
    MS 365 Family 64-bit 2502
    Posts
    26,835

    Re: VBA find method and named range not working

    It's hard for me to understand the code you posted without seeing the context of how it's called. You can certainly loop through cells in a range but I don't know if the loop should be in FindCategory or the code that calls it. Can you post your whole file?

    Here is how you loop through all cells in a range:
    Dim c as Range
    For Each c In ActiveSheet.Range("G13:G18")
       ' Do something here on the cell
    Next c

  5. #5
    Registered User
    Join Date
    05-04-2012
    Location
    USA
    MS-Off Ver
    excel 2010
    Posts
    25

    Re: VBA find method and named range not working

    Whew, I just got it working. Thanks for all the help.

    I've changed things slightly since the first iteration. The idea now is to select the expense description and then the code will
    1) checking for each cell within the selection
    2) find a match (if one exists) in the named range "Match"
    3) and return the offsets from match to the cell's right (returning both the expense category and subcategory)

    I've posted the code below for anyone else who might be interested. 6String, please let me know if you see any issues/areas for improvement. And thanks again.

    Sub FindCategory()
         
        Dim rFound As Range
        Dim sFind As Range
        Dim cell As Range
        Dim sAddr As String
         
        Set sFind = Selection
        
        For Each cell In sFind
            With Sheet8.Range("Match")
                Set rFound = .Find(What:=cell, _
                LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
                MatchCase:=False, SearchFormat:=False)
                    If Not rFound Is Nothing Then
                        sAddr = rFound.Address
                        Do
                            cell.Offset(0, 1).Value = rFound.Offset(0, 1)
                            cell.Offset(0, 2).Value = rFound.Offset(0, 2)
                            Set rFound = .FindNext(rFound)
                        Loop While rFound.Address <> sAddr
                    End If
            End With
        Next
        
    End Sub

+ 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