+ Reply to Thread
Results 1 to 8 of 8

.Find Next

Hybrid View

  1. #1
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    .Find Next

    Hi All
    Have problems using find and the Dictionary
    What Im trying to do is find a certain word in a string then return the number associated with that word
    The code is
    Dim DXFDict,fAddress As String,LookInR As Range,
    Dim DXFDescription, DXFCode, Key,FoundOne As Range
      Set DXFDict = CreateObject("Scripting.Dictionary")
       DXFDict.Add "ROAD", "10"
       DXFDict.Add "TREE", "24"
       DXFDict.Add "FENCE", "30"
       DXFDict.Add "GATE", "31"
       'DXFDict.Add "", "0"
          Set LookInR = Sheets("Orienteering").Range("E:E").CurrentRegion
              For Each Key In DXFDict
                  With LookInR  'Columns("E")
                     Set FoundOne = .Find(What:=Key, LookAt:=xlPart) 
                     fAddress = FoundOne.Address "ERROR ON THIS LINE
                       Do
                         FoundOne.Offset(1).Value = DXFDict.Item(Key)
                        Set FoundOne = .FindNext(After:=FoundOne)
                      Loop While FoundOne.Address <> fAddress
                   End With
              Next
    But I get an error on this line fAddress = FoundOne.Address
    why is this so??
    any pointers appreciated
    Last edited by pike; 06-09-2009 at 07:16 AM.
    If the solution helped please donate to RSPCA

    Site worth visiting: Rabbitohs

  2. #2
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481

    Re: .Find Next

    If the text is not found then the object FoundOne will be nothing so you need to test for that first.

        Dim DXFDict, fAddress As String, LookInR As Range
        Dim DXFDescription, DXFCode, Key, FoundOne As Range
      Set DXFDict = CreateObject("Scripting.Dictionary")
       DXFDict.Add "ROAD", "10"
       DXFDict.Add "TREE", "24"
       DXFDict.Add "FENCE", "30"
       DXFDict.Add "GATE", "31"
       'DXFDict.Add "", "0"
          Set LookInR = Sheets("Orienteering").Range("E:E").CurrentRegion
              For Each Key In DXFDict
                  With LookInR  'Columns("E")
                     Set FoundOne = .Find(What:=Key, LookAt:=xlPart)
                     If Not FoundOne Is Nothing Then
                        fAddress = FoundOne.Address 'ERROR ON THIS LINE
                          Do
                            FoundOne.Offset(1).Value = DXFDict.Item(Key)
                           Set FoundOne = .FindNext(After:=FoundOne)
                         Loop While FoundOne.Address <> fAddress
                     End If
                   End With
              Next
    Cheers
    Andy
    www.andypope.info

  3. #3
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: .Find Next

    That was quick Andy

    Check if object Exist before proceeding .. thanks for that
    also does Find look for the Word with in sting or do I need to do something like

     Set FoundOne = .Find(What:="*" & Key & "*", LookAt:=xlPart)
    as it looking like the word "GATE" is not found in the String "Big Gates"

  4. #4
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481

    Re: .Find Next

    xlPart implies *gate*

  5. #5
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: .Find Next

    Quote Originally Posted by Andy Pope View Post
    xlPart implies *gate*
    thought so Himmm ....
    may have the next Dict item in the wrong place ... I'll have a play around
    your direction has help alot. I can stop scratching my head and move on
    Thanks for your help again ...

  6. #6
    Forum Contributor
    Join Date
    02-23-2006
    Location
    Near London, England
    MS-Off Ver
    Office 2003
    Posts
    770

    Re: .Find Next

    The 'lookat:=xlPart' is telling Excel that you are wanting partial matches as well.

    "gate", "big gate", "really big gated drive", "segregated" will all match a search pattern of "gate", (and be careful of cases like the 3rd & 4th one's as they can really catch people out if you are searching for short strings in particular)

    If you only wanted exact matches you would use 'lookat:=xlWhole', which would then only match the first case in the example above.

    I don't know, but it's quite possible that 'Find' is case sensitive? Try searching for "Gate" and also "GATE" and see if you get different results?
    Last edited by Phil_V; 06-09-2009 at 06:16 AM.
    If you find the response helpful please click the scales in the blue bar above and rate it
    If you don't like the response, don't bother with the scales, they are not for you

  7. #7
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: .Find Next

    thanks phil_V

  8. #8
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: .Find Next

    Spelling mistake Big Gote
    xl part working like a dream

+ 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