Hi all,

I have been running this code with no errors for a while, but this keeps popping up now and I am unsure why:

Sub Procedure14()
'Copy to IMEI table
Application.ScreenUpdating = False
Sheets("IMEI").Select
    Range("A2").Select
    Range(Selection, Selection.End(xlDown)).Select
    Application.CutCopyMode = False
    Selection.Copy
    Sheets("Start").Select
    Range("L3").Select
    ActiveSheet.Paste
    Sheets("IMEI").Select
    Range("B2").Select
    Range(Selection, Selection.End(xlDown)).Select
    Application.CutCopyMode = False
    Selection.Copy
    Sheets("Start").Select
    Range("N3").Select
    ActiveSheet.Paste
        
Application.ScreenUpdating = True

End Sub
I am getting "Run-time error '1004': You can't paste this here because the Copy area and paste area aren't the same size. Select just one cell in the paste area or an area that's the same size, and try pasting again.

With this line highlighted:

ActiveSheet.Paste

Any ideas why?