Old dog new tricks
New Member
- Joined
- Mar 17, 2011
- Messages
- 1
This is my first time using a combo box. This combo box is simply meant to quickly take the user to a particular place in a >4000 row spreadsheet; e.g., click on "Car" in the drop down, then go to cell A407, but nothing is happening. Eventually I would like to search & match to a text string in column A, because the sheet will change and the location won't always be A407, so if that is possible I'd love to know how to do that, too. Thanks ever so much!
Private Sub cboUNITS_Click()
If cboUNITS = "Car" Then
Sheets("Unit Drives and Economics").Select
Range("A407").Select
End If
End Sub
Private Sub cboUNITS_Click()
If cboUNITS = "Car" Then
Sheets("Unit Drives and Economics").Select
Range("A407").Select
End If
End Sub