Bonjour,
j'ai enregistré une macro pour la création d'une liste déroulante , après avoir donné un nom à AC2:AC3 (toto)
elle peut t'inspirer:
With Selection.Validation
.Delete
.Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Operator:= _
xlBetween, Formula1:="=toto"
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = ""
.InputMessage = ""
.ErrorMessage = ""
.ShowInput = True
.ShowError = True
End With
Cordialement