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.
Bookmarks