Thanks!
i came up with this:
Sub Macro2()
Dim PFI As String
Dim WS As Worksheet: Set WS = Sheets("Pro-Forma Invoice")
PFI = WS.Range("H7")
Windows("ORDERS 2014.xlsm").Activate
With Sheets("Pending Orders")
Cells.Find(What:=PFI, After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate
ActiveCell.Hyperlinks(1).Follow NewWindow:=False, AddHistory:=True
Range("A1").Value = "YOU DID IT!"
End With
End Sub
Can you briefly explain what your version is doing "extra"?
Thanks!
Bookmarks