Application.ScreenUpdating = False
Set MyCell = Range("B15")
MyCell.Select
[B]Image = "F:\Mes images\Phototchoules\Fonds d'écran\Bass1.jpg" 'À adapter[/B]
Set MyPicture = ActiveSheet.Pictures.Insert(Image)
With MyPicture
LockAspectRatio = msoFalse
[B].Left = MyCell.Left[/B]
[B].Top = MyCell.Top[/B]
.Width = MyCell.Width
.Height = MyCell.Height
[B]End With[/B]
Application.ScreenUpdating = True