I want to use VBA to delete all comboboxes in a sheet (form control type not active X)
I have
For Each s In ActiveSheet.Shapes
s.Delete
Next s
The problem is it deletes all my shapes, and I'm having trouble finding the logic just to delete comboboxes (which have different names)
Thanks for any help!