I've made a navigation system in Excel that used two interrelated dropdown boxes (form control) in VBA. First is a main category (Drop Down 186), the second is sub categories in that main category.(Drop Down 187)
When I choose the main category(186) I reset the sub category (187) to list item #1 using:
Sheets("Equipment").Shapes("Drop Down 187").ControlFormat.Value = 1
This works fine on a PC, but gives a 1004 error in Excel 2016 with a message of "Unable to set the Value property of the DropDown class.
Any ideas? Pretty sure this works fine on Excel 2011.
Sheets("Equipment")
withWorksheets("Equipment")
in Excel 2011? I know what I am asking is weird but then so is This – Siddharth Rout