Figured out how to label a line. Problem still persists as follows: I want it to diplay a message saying "works" if something is found. If nothing is found I want it to offset 1 row and go to line "nada". The way it is written it seems to be ignoring the activecell.offset lines.
Nada: Selection.Copy
Sheets("TYP Strips").Select
Range("A1").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Dim foundrange As Range
Set foundrange = Cells.Find(What:=Range("A1"), after:=ActiveCell)
Cells.Find(What:=Range("A1"), after:=ActiveCell).Activate
If foundrange Is Nothing Then
Sheets("Data").Select
ActiveCell.Offset(1, 0).Select
GoTo Nada
Else
MsgBox ("works")
End If
Bookmarks