Sub coller()
On Error GoTo fin
Range("L3:p30").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
fin:
If Err.Description <> "" Then
MsgBox "tu as oublié de copier les cellules de ton fichier source"
End If
On Error GoTo 0
End Sub