Sub b()
Dim o As Object, x, y
With Sheets("Engrenages")
.DrawingObjects.Placement = 2
.DrawingObjects.Group 'commande Grouper
Set o = .DrawingObjects(1)
.[B49].UnMerge
End With
x = o.Left
y = o.Top
With Sheets("FLASH")
.DrawingObjects.Placement = 3
.Activate
o.Copy
.Paste
Selection.Left = .[B1].Left + x
Selection.Top = y
Selection.Ungroup 'commande Dissocier
o.Parent.[B45,B47,B49,B52].Copy .[B43]
.[B45:G45].Merge
.[B46].VerticalAlignment = xlBottom
End With
ActiveCell.Activate
End Sub