VBA Help - Auto Hide Row

Golfpro1286

New Member
Joined
Aug 22, 2018
Messages
30
Hello, I have looked around and could not find any VBA that would work for what I am trying to do, which seemed like it should be simpler than it is turning out to be. I want to automatically hide and unhide some rows based on the following:

I have a summary sheet (in "Sheet 1") that summarizes the number of loans an officer makes within a given system. I want to hide/un-hide any rows with "0". Example:
RowNameCount
1Adam1
2Corey0
3Trevor1
4Jim0
5Randy0


<tbody>
</tbody>

Here is how the count is calculated:

The loan data is entered into a table on a separate sheet ("Sheet 2") as follows:

OfficerLoan #System
Adam1234CL
Adam5678CL
Corey91011IL
Trevor8765ML
Jim5843CL
Jim4128IL
Randy6634ML

<tbody>
</tbody>

In "Sheet 1" I have a combo box to change the system between "CL" "IL" and "ML"
The count column is calculated from a COUNTIFS formula that will use data from table on "Sheet 2" to count number of loans for the system selected in the combo box.

My expected results here would be as follows:
If CL is selected in the combo box rows 2,3,5 would auto-hide because the value would be 0 and rows 1,4 would auto un-hide becuase their value would be greater than 0.

If IL is selected in the combo box rows 1,3,5 would auto-hide because the value would be 0 and rows 2,4 would auto un-hide becuase their value would be greater than 0.

If ML is selected in the combo box rows 1,2,4 would auto-hide because the value would be 0 and rows 3,5 would auto un-hide becuase their value would be greater than 0.

Thanks for any help!
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Hello Try Below Code Paste it on Sheet Module Assuming Your Criteria Column is "C"
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Dim i As Integer
    Dim rng As Range
    lr = ActiveSheet.Range("C:C").Find(what:="*", searchdirection:=xlPrevious, searchorder:=xlByRows).Row
    For i = 2 To lr
        If Cells(i, 3).Value = 0 Then
            Set rng = Application.Range("C" & i)
            rng.EntireRow.Hidden = True
        ElseIf Cells(i, 3).Value > 0 Then
            Set rng = Application.Range("C" & i)
            rng.EntireRow.Hidden = False
         End If
    Next
End Sub
 
Last edited:
Upvote 0
The count column is calculated from a COUNTIFS formula that will use data from table on "Sheet 2" to count number of loans for the system selected in the combo box.

Could you show us the formula?
 
Upvote 0

Forum statistics

Threads
1,214,520
Messages
6,120,003
Members
448,935
Latest member
ijat

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