Hide specific rows when two dropdowns are selected

Nick70

Active Member
Joined
Aug 20, 2013
Messages
299
Office Version
  1. 365
Platform
  1. Windows
Hi,

I have a sheet with two dropdowns.
Dropdown in cell C8 which has 3 options: Client, Partner, Friend
Dropdown in cell C13 which has 3 options: High, Medium, Low

I would like to have a macro so that if cell C8 has dropdown option 'Client' and cell C13 has dropdown 'Medium' (both conditions met) then all rows which have text in column A equal to 'HR' appear otherwise
if any other combination is chosen (e.g. Client, High or Partner, Low etc.) then all rows which have text in column A equal to 'HR' will disappear.

Basically I would like rows which have value equal to 'HR' in their first cell (so in column A) appear or disappear depending on which dropdown combination I choose.

Rows with 'HR' should be visible only for dropdown C8 = 'Client' and dropdown C13 = 'Medium' (both conditions must be valid at the same time) otherwise they should be hidden.

How do I do that?

Thanks,
Nix :unsure::unsure:
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Well, since you haven't given an idea of how your data layout is I'll try to guess a macro. I'm supposing that you have headers in row 15 and your data from row 16 and down. Event Worksheet_Change is used to trigger. In a test file paste the macro in the sheet's module and adjust starting row (headers).
VBA Code:
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
    If Not Target.Address = "$C$8" And Not Target.Address = "$C$13" Then Exit Sub
    If Range("C8") = "Client" And Range("C13") = "Medium" Then
        With ActiveSheet
            AutoFilterMode = False
            With Range("A15", Range("A" & Rows.Count).End(xlUp)) '<- adjust starting row as needed
                .AutoFilter 1, Criteria1:="<>HR", VisibleDropDown:=False
                .Offset(1).SpecialCells(xlCellTypeVisible).EntireRow.Hidden = False
            End With
        End With
    Else
        AutoFilterMode = False
    End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,599
Messages
6,120,447
Members
448,966
Latest member
DannyC96

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