I have taken over a spreadsheet, for a company, that does various calculations based on inputs including a lot of dropdown (ComboBox) lists.
I am try to write a VBA script to automatically choose another value from the list (for the purposes of quickly testing the spreadsheet).
I have tried the following code but it does not seem to work
ActiveSheet.Shapes("Dropdown3").Select
With Selection
Sheets("SheetName").Shapes("ListName").ControlFormat.ListIndex = 0
End With
Can you help? What further information would be useful?