Filter Data on one sheet with dropdown list from another sheet

used2reg

New Member
Joined
Mar 2, 2012
Messages
28
I have an excel file with 3 Sheets - Dashboard, Funnel and DDL

The Dashboard is used to display the summed up data from the funnel sheet
The Funnel is used for user entry
DDL - is my sheet uses for drop down lists

What i would like to do is on the Dashboard sheet, add a drop down (which i have added) that i can only select one option: Q1-19, Q2-19, Q3-19, Q4-19, Q1-20, Q2-20, Q3-20, Q4-20, etc and it would filter my list on the Funnel page (there is a drop down here that the user would select the Quarter - its in Column K); so that the filtered data on the Funnel page only displays what is selected in the drop down on the Dashboard sheet.....

VBA is fine is possible..

Thanks
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Maybe something along the lines
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.CountLarge > 1 Then Exit Sub
    If Target.Address(0, 0) = "K1" Then
        If Target.Value = "" Then
            Sheets("Funnel").Range("A1:K1").AutoFilter 11
        Else
            Sheets("Funnel").Range("A1:K1").AutoFilter 11, Target.Value
        End If
    End If
End Sub
This needs to go in the Dashboard sheet module. Change ranges & sheet name to suit
 
Upvote 0
I must be missing something - does not seem to do anything for me..

The drop down on the Dashboard page is used to pick the Quarter that i wish to see and its in D8; and that selection i need to filter on the Funnel sheet (more funnel sheets will be added also for my additional sales people - funnel2, funnel3, funnel4...) is in column K (K2:K1000)
 
Upvote 0
Did you change the ranges & sheet name to suit?
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,786
Messages
6,121,553
Members
449,038
Latest member
Guest1337

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