D
dgold82
I have a control combo box on top of each sheet that links to other sheets.
Is there a way to make it revert back to default text. Here is what my code
looks like now:
Private Sub ComboBox1_Change()
If ComboBox1.Value = "Report1" Then
Sheets("sheet1").Select
End If
If ComboBox1.Value = "Report2" Then
Sheets("sheet2").Select
End If
End Sub
I want the combo box to revert back to something like "click here to jump to
reports" after a user clicks "Report2" or "Report1". The problem we are
having is that if a user goes back and fourth between sheets that have this
combo box you can't click on "Report1" to jump back again unless you click
somewhere else first. Hope this makes sense.
Thanks.
(If someone can help me manipulate the code to go to the sheet AND to a
specific cell in that sheet that would be a bonus)
Is there a way to make it revert back to default text. Here is what my code
looks like now:
Private Sub ComboBox1_Change()
If ComboBox1.Value = "Report1" Then
Sheets("sheet1").Select
End If
If ComboBox1.Value = "Report2" Then
Sheets("sheet2").Select
End If
End Sub
I want the combo box to revert back to something like "click here to jump to
reports" after a user clicks "Report2" or "Report1". The problem we are
having is that if a user goes back and fourth between sheets that have this
combo box you can't click on "Report1" to jump back again unless you click
somewhere else first. Hope this makes sense.
Thanks.
(If someone can help me manipulate the code to go to the sheet AND to a
specific cell in that sheet that would be a bonus)