How do you create a list in a Combo or List Box?

  • Thread starter Thread starter Arthur
  • Start date Start date
A

Arthur

I'm trying to create a drop-down list in PowerPoint, but I can't seem to
fill out more than one row of information in either a Combo Box or List
Box. Could someone tell me how to create long lists for both of these
control boxes?

thanks!!
 
Arthur,
You probably have to use vba code to do that.

With the additem command you can add multiple item to your combo box.

With ComboBox1
.AddItem "Option a"
.AddItem "Option b"
End With

Regards
Kurt.
 
Back
Top