Private Sub CommandButton1_Click()
Dim nom$
On Error Resume Next
nom = Me.Shapes("ImgAuxil").Name
If nom <> "" Then Me.Shapes("ImgAuxil").Delete: Exit Sub
Sheets("MRR").Range("B48:M59").CopyPicture Appearance:=xlScreen, Format:=xlBitmap
Me.Paste
Selection.Name = "ImgAuxil"
Me.Shapes("ImgAuxil").Top = ActiveCell.Offset(1).Top
Me.Shapes("ImgAuxil").Left = ActiveCell.Offset(, 1).Left
Application.CutCopyMode = False
End Sub