Results 1 to 4 of 4

Changing this code so that it can do multiple dropdowns.

Threaded View

  1. #1
    Registered User
    Join Date
    06-09-2012
    Location
    United Kingdom
    MS-Off Ver
    Excel 2007
    Posts
    92

    Changing this code so that it can do multiple dropdowns.

    Hello everybody, I have this code :

    Private Sub Worksheet_Change(ByVal Target As Range)
    
        Dim lastrow As Long
        Dim rngList As Range
        
        lastrow = Cells(Rows.Count, "A").End(xlUp).Row
        
        Set rngList = Range("AB3").CurrentRegion
        
        If Target.Cells.Count > 1 Then Exit Sub
        
        On Error Resume Next
        
        If Not Intersect(Target, Range("B18:B19")) Is Nothing Then  ' user is in column-B
            Target.Value = Application.WorksheetFunction.VLookup(Target.Value, rngList, 2, False)
        End If
        
        Set rngList = Nothing
        
    End Sub
    Basically the code, takes the dropdown from the cells below, then does a vlookup to grab the value to the right of the cell. This is so the user doesn't have to memorise "48583" but can just select "Flats" and 48583 is selected from the cell next to it. But at the moment ,the code can only do 2 of the cells from the same range, I would like it to be able to do all of the below ranges, I have only managed to get it working on the first one, any help would be appreciated.

    B18:B19 should grab data from AB3 downwards

    B20:B21 should grab data from AE3 downwards

    B22:B23 should grab data from AH3 downwards

    H9:H10 should grab data from BC2 downwards.

    If there is also a simpler way to do this without VBA also, this would be appreciated.

    1 EXAMPLE.xlsx
    Last edited by UsmanBPD; 06-28-2012 at 08:20 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1