Hello

I have a list of options:

Daily, Weekly, Monthly, Never

I am looking to create 9 questions all of which use a combo box to generate the answer
The answer comes from the list above

How do I reuse this without have to do something like this for every question:

With cmbQuestion1
.AddItem "Daily"
.AddItem "Weekly"
.AddItem "Monthly"
.AddItem "Never"
End With

Thanks