I'm incredibly new to VBA for Excel, and ashamed to admit that I don't understand what I've read so far! I'm trying to copy and paste from one sheet to another, and then recopying the results from the second sheet back into the first sheet. I have about 5300 items that I wish to copy - paste from the original sheet. Here's the recorded macro that resulted:
Sub Retreive_Code()
    Range("L11").Select
    Selection.Copy
    Windows( _
        "Unique License plate Valuation Algorithm.18March2014.V7.0.Winner!.xlsx"). _
        Activate
    Range("D2").Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
    Range("L2").Select
    Application.CutCopyMode = False
    Selection.Copy
    Windows("Complete Unique number sales.2010 - 2012.xlsx").Activate
    Range("M11").Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
End Sub
Please let me know if you have any questions at all. Many thanks
 
     
     
    