How can I create dependent & dynamic DropDown lists that start with a certain string?

mcclausky

New Member
Joined
Sep 15, 2016
Messages
3
Hello,

I would like to create 3 levels of dependent & dynamic DropDownlists (Data Validation lists) based on the following ranges:

LEVEL 1LEVEL 2LEVEL 3
1. ACTIVE1.1. ACTIVE CURRENT1.1.1. AVAILABLE
2. PASSIVE1.2. ACTIVE NON CURRENT1.1.2. ACTIVE EXIGIBLE
2.1. PASSIVE CURRENT1.2.1. ACTIVE FIXED
2.2. PASSIVE NON CURRENT1.2.2. CUMULATED DEP
2.1.1. PASSIVE EXIGIBLE
2.1.2. PASSIVE EXIGIBLE LT
2.2.1. PASSIVE EX.
2.2.2. PASSIVE EX. LT

<tbody>
</tbody>

The 3 ranges are created as: Level_1, Level_2, Level_3.

  • DropDown list 1 must display items from range Level_1.
  • DropDown list 2 must display FILTERED items from range Level_2. Example: if "1.ACTIVE" is selected on DropDownList 1 then the available items on DropDown 2 should only be: "1.1.ACTIVE CURRENT" and "1.2.ACTIVE NON CURRENT". The formula for the Data validation on DropDown 2 should filter the Level_2 range by the first 2 chars selected on DropDown1, in this case it should return a list of items that start with "1.", which are items 1.1. and 1.2.
  • DropDown list 3 must display FILTERED items from range Level_3. Example: if "2.1. PASSIVE CURRENT" is selected on DropDownList 2 then the available items on DropDown 3 should only be: "2.1.1..." and "2.1.2. ...". The formula for the Data validation on DropDown 3 should filter the Level_3 range by the first 4 chars selected on DropDown2, in this case it should return a list of items that start with "2.1.", which are items 2.1.1. and 2.1.2.

I have tried with several OFFSET formulas and some worked, but unfortunately the OFFSET formula on the DropDowns stops working when you close and re-open the excel file. That's why I'm asking for your help, perhaps there is another way to achieve this?

Your help will be greatly appreciated.

Mc
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
This code assumes that your data list is in sheet2 (A to C) and your validation list will be in sheet 1 "A1 to C1".
Paste this code in sheet1 code module.
To run the code you need to first activate sheet1 (click another sheet tab then back to sheet1.
This will fill validation in "A".
Select value in "A" for validation in "B" , and "B for C".
Code:
Private Sub Worksheet_Activate()
Dim Rng As Range, Dn As Range
With Sheets("Sheet2")
 Set Rng = .Range(.Range("A2"), .Range("A" & Rows.Count).End(xlUp))
End With
With Range("A1").Validation
.Delete
.Add Type:=xlValidateList, Formula1:="='" & Sheets("Sheet2").Name & "'!" & Rng.Address
End With
Range("A1").Offset(, 1).Resize(, 2) = ""
End Sub


Private Sub Worksheet_Change(ByVal Target As Range)
Dim Rng As Range, Dn As Range, Str As String, nStr As String
Application.EnableEvents = False
If Not Intersect(Target, Range("A1:B1")) Is Nothing And Target.Count = 1 Then
With Sheets("Sheet2")
Select Case Target.Address(0, 0)
    Case "A1": Set Rng = .Range(.Range("B2"), .Range("B" & Rows.Count).End(xlUp))
    Case "B1": Set Rng = .Range(.Range("C2"), .Range("C" & Rows.Count).End(xlUp))
End Select
End With
For Each Dn In Rng
Str = Split(Target, " ")(0)
If Left(Split(Dn.Value, " ")(0), Len(Str)) = Str Then
    nStr = nStr & IIf(nStr = "", Dn.Value, ", " & Dn.Value)
End If
Next Dn
With Target.Offset(, 1).Validation
.Delete
.Add Type:=xlValidateList, Formula1:=nStr
End With
Target.Offset(, 1).Resize(, 2) = ""
End If
Application.EnableEvents = True
End Sub
 
Last edited:
Upvote 0


Mike, you are great!
smile.gif

Your solution worked perfectly. My previous solution was somehow similar but a bug in excel prevented it to work after re opening the file. It was something like this.
=OFFSET(INDEX( level_2_items, 1), MATCH(LEFT(F2,2), LEFT(level_2_items, 2), 0)-1, 0, SUMPRODUCT(--(LEFT(level_2_items,2)=LEFT(F2, 2) )),1)

Anyway, thank you so so much!!!
 
Upvote 0

Forum statistics

Threads
1,215,219
Messages
6,123,685
Members
449,117
Latest member
Aaagu

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