it is just a simple excel worksheet...drop down menu works fine, i just don't want any of the list options to be select-able....i am happy with the text already in the active cell....also hoping not to use any 'protect sheet' optionsIf this is on a userform and it's an activex control I'd say no. But you can easily deselect any selected item and make the combo empty again using vba:
Me.ComboBox1.ListIndex = -1
If it's not, then I don't know but would guess the same thing is possible. Combos on a sheet are a bit trickier. Why would you want this in the first place? Maybe a locked listbox would be better.
yes, data validation, thank you. and also thank you to MicronIf you are talking about Data Validation, then the only way to stop people changing the value, is to protect the sheet.
I guess I took that too literally. Data validation allows you to choose a list item without sheet protection and I answered as though sheet protection was to be avoided.i just don't want any of the list options to be select-able... also hoping not to use any 'protect sheet' options