If you have multiple comboboxes, you can try

Code:
With Me
    With .ComboBox1
        .List = d
        .ListIndex = -1
    End With
    With .ComboBox3
        .List = d
        .ListIndex = -1
    End With
End With