Option Explicit
Sub Copie_Image()
Dim image As String
image = Application.Caller
If image = "Forme libre 4" Then
With Sheets("Feuil2")
.Shapes("Image 9").Copy
End With
ElseIf image = "Forme libre 5" Then
With Sheets("Feuil2")
.Shapes("Image 11").Copy
End With
ElseIf image = "Forme libre 6" Then
With Sheets("Feuil2")
.Shapes("Image 10").Copy
End With
ElseIf image = "Forme libre 7" Then
With Sheets("Feuil2")
.Shapes("Image 8").Copy
End With
End If
Range("I4").Select
ActiveSheet.Paste
Range("H14").Select
End Sub