Hi,
Hopefully some sharp brains that could help me out....
I have a dynamic drop down list in B3. The dynamic drop down list in B4 is a result of my choice in B3, and my dynamic drop down list B5 is a result of my choice in B4.
When changing a value in B3 the drop down lists B4 and B5 will be reset with this script:
<code>
</code>So to my problem.
Under this drop down lists I have allot of data in range from "A9:X200"
I want to filter this list by my choice in those 3 drop down lists. value (TEXT) in "B3" should filter Column range "G11" and down, "B4" should filter "H11" and down and "B5" should filter I11 and down. Could anyone help me
with a solution that works with the existing script in the same sheet.
<code></code>
Hopefully some sharp brains that could help me out....
I have a dynamic drop down list in B3. The dynamic drop down list in B4 is a result of my choice in B3, and my dynamic drop down list B5 is a result of my choice in B4.
When changing a value in B3 the drop down lists B4 and B5 will be reset with this script:
Rich (BB code):
<code>Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$B$3" Then
Range("B4:B5").Value = "-"
ElseIf Target.Address = "$B$4" Then
Range("B5").Value = "-"
End If
End Sub</code>
</code>So to my problem.
Under this drop down lists I have allot of data in range from "A9:X200"
I want to filter this list by my choice in those 3 drop down lists. value (TEXT) in "B3" should filter Column range "G11" and down, "B4" should filter "H11" and down and "B5" should filter I11 and down. Could anyone help me
with a solution that works with the existing script in the same sheet.
<code></code>