tbrynard01
Board Regular
- Joined
- Sep 20, 2017
- Messages
- 129
- Office Version
- 365
- Platform
- Windows
Is it possible to create a list box that when an item is selected will take you to a place on that sheet and how?
Thank you!
Thank you!
I'm not understanding.
Is the listbox in a userform?
You can put the detail of what you have.
I am confused by the terms you use.
You don't have a listbox in your book, nor do you have data validation.
What you have is a hyperlik from the "LookUp Tables" sheet to the "2019" sheet.
If you already have the hyperlink, then what do you need?
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If Target.Value = "" Then Exit Sub
If Target.Address(0, 0) = "A2" Then
Dim f As Range
Set f = Range("A4:D" & Rows.Count).Find(Target.Value, , xlValues, xlWhole)
If Not f Is Nothing Then
f.Select
End If
End If
End Sub