I am trying to display the text Select by default in a form control combo box
. I have tried the following but doesn't seem to work. Can someone please suggest what am I doing wrong ?
Option 1:
Activesheet.shapes("choose_selection").text = "Select your choice"
Option 2:
Activesheet.shapes("choose_selection").controlformat.text = "Select your choice"
but I get this error
Set the default value in a combo box
The ListIndex property sets the currently selected item using an index number. ListIndex = 1 sets the first value in the array.
Hope it would help.