Results 1 to 4 of 4

Searching for letter combinations

Threaded View

h3lla Searching for letter... 12-26-2008, 03:41 PM
Leith Ross Hello h3lla, Welcome to... 12-26-2008, 03:50 PM
shg I can't tell exactly what... 12-26-2008, 04:44 PM
h3lla Oh, thanks for correcting my... 12-26-2008, 10:14 PM
  1. #1
    Registered User
    Join Date
    12-26-2008
    Location
    Sweden
    Posts
    10

    Searching for letter combinations

    Hi
    I have problem searching in columns, i search for a combination of letters for example abc. But if abc does not exists in the column i want the macro to "jump" to the next thing to do.
    I tried to solve this with an "if...then...else", another difficulty is that i cant use fixed references.

    For example i've tried this:
        Cells.Find(What:="Analyskanal:", After:=ActiveCell, LookIn:=xlFormulas, _
                   LookAt:=xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlNext, _
                   MatchCase:=True, SearchFormat:=False).Activate
        ActiveCell.Select
        Selection.Offset(0, 2).Select
        Cells.Find(What:="abc", After:=ActiveCell, LookIn:=xlFormulas, LookAt:= _
                   xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlNext, MatchCase:= _
                   True, SearchFormat:=False).Activate
        If ActiveCell.Value = "abc" Then
            Cells.Find(What:="Resultat:", After:=ActiveCell, LookIn:=xlFormulas, _
                       LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
                       MatchCase:=True, SearchFormat:=False).Activate
            ActiveCell.Select
            Selection.Offset(0, 1).Select
            Selection.Copy
            Range("M14").Select
            ActiveSheet.Paste
            Range("A1").Select
        Else:
            Range("A1").Select
        End If
    If abc does not exist I want the macro to "jump" to else..., how do i do this?

    Thanks in advance.
    Last edited by shg; 12-26-2008 at 04:34 PM. Reason: code tags

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