Hi All,
I'm trying to make a combo box in which When You select a value you goto a specific cell in another worksheet, but My code keeps giving me Runtime Error 424 "Object Required". The Code I Have so far is:
This Is the 4th method I have tried, I believe it will work but I think I'm missing something. If you could provide help it would be greatly appreciated.
I'm trying to make a combo box in which When You select a value you goto a specific cell in another worksheet, but My code keeps giving me Runtime Error 424 "Object Required". The Code I Have so far is:
Code:
Sub DropDown4_Change()
Select Case DropDown4.Text
Case "CRM-1197-1 "
Sheets("Sheet2").Range("A12").Select
Case "CRM-1197-10 "
Sheets("Sheet2").Range("A13").Select
Case Else
End Select
End Sub