Sub Creation_COMBO_pour_Arthour()
With ActiveSheet.OLEObjects.Add(ClassType:="Forms.ComboBox.1", _
Link:=False, DisplayAsIcon:=False, Left:=Cells(1, 5).Left, Top:=Cells(10, 5).Top, Width:=100, Height:=18)
.Object.List = Split("1 2 3 4 5 6 7")
End With
End Sub