How do I edit this to copy the contents in cells P2 and Q2 the last row of data in both columns P & Q? I know where my problem below...I just don't know how to fix it.
Thanks
Range("p2").Select
ActiveCell.FormulaR1C1 = "=IFERROR(VLOOKUP(RC[-13],Collector,3,FALSE),"" "")"
Range("p2").Select
Selection.AutoFill Destination:=Range("p211")
Range("p211").Select
Range("Q2").Select
ActiveCell.FormulaR1C1 = "=IF(ISBLANK(RC[-12]),"" "",VALUE(RC[-12]))"
Range("Q2").Select
Selection.AutoFill Destination:=Range("Q2:Q11")
Range("Q2:Q11").Select
Columns("Q:Q").Select
Selection.Copy
Columns("E:E").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Thanks
Range("p2").Select
ActiveCell.FormulaR1C1 = "=IFERROR(VLOOKUP(RC[-13],Collector,3,FALSE),"" "")"
Range("p2").Select
Selection.AutoFill Destination:=Range("p211")
Range("p211").Select
Range("Q2").Select
ActiveCell.FormulaR1C1 = "=IF(ISBLANK(RC[-12]),"" "",VALUE(RC[-12]))"
Range("Q2").Select
Selection.AutoFill Destination:=Range("Q2:Q11")
Range("Q2:Q11").Select
Columns("Q:Q").Select
Selection.Copy
Columns("E:E").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False