Results 1 to 8 of 8

.Find Next

Threaded 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

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