Validation Lists...

brans1982

Active Member
Joined
Mar 25, 2009
Messages
263
Hi,

I have created a validation list. Well, all I need is a drop down list but using the validation option is the only way i can seem to do it. Basically, what I want to do is select something from the list and when I do that for my page to scroll down to where that list referfers to e.g

Amsterdam
Paris
Munich

If the information on Munich is in the range A16:D20, when I click on Munich in the list (A1) I want the page to move to where the range is.

Is that possible? I am using Excel 2002 by the way. (work computer)

Thanks Folks! Look forward to seeing some help! :)
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    
    If Not Application.Intersect(Range("A1"), Target) Is Nothing Then
        Select Case Range("A1").Value
            Case "Amsterdam"
                Range("A5").Select
            Case "Paris"
                Range("A10").Select
            Case "Munich"
                Range("A15").Select
        End Select
    End If
End Sub
 
Upvote 0
I don't know how you'd do that but what you could do is use Data>Advanced>Filters. Use the location of your drop down list as the criteria. then when you select i.e Amsterdam it will filter your data range to show just lines with Amsterdam on.
 
Upvote 0
The Name Box is in the near top left of my screen, just above the "A" for col A.

Select your range, then Insert, Name, Define, give your range a name. When you select the name box, the name of the defined range will be selectable, and when selected the cursor will automatically select the 1st cell of that range.
 
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,744
Members
448,989
Latest member
mariah3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top