Perfect! Here's the final code as I use it:
Sub Lookup_Pline()
Dim Rng As Range
Set Rng = Range(Range("A1"), Range("A" & Rows.Count).End(xlUp)).Offset(, 2)
Set Rng = Rng.SpecialCells(xlCellTypeBlanks)
Rng.FormulaR1C1 = "=VLOOKUP(RC[-2],'[PLine Listing.xlsx]COM_ REPLEN1677'!C1:C2,2,FALSE)"
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
Range("C1").AutoFilter Field:=3, Criteria1:="=#N/A", _
Operator:=xlAnd
Range("A1").Select
End Sub
Thanks, Mick. Have a good one.
Bookmarks