Use of code more than once on the same worksheet

agc3278

New Member
Joined
Nov 14, 2007
Messages
15
Hi All,

I cannot seem to figure out how to get this code to work multiple times on the same Worksheet (I am definitely a beginner when it comes to VBA). So much so, that an awesome member helped out on this forum with the below code to hide and show rows (2-43) based on a number entered into a specific cell (A1). What I'm looking for is a way to hide and show two more ranges of rows based on a entries into two other cells (A2 and A3). Any help or guidance would be greatly appreciated.

Thank you,
Gary

Private Sub Worksheet_Change(ByVal Target As Range)
Dim aNames, Val
Dim i As Long, ShowHideRows As Long, ShowRows As Long

Const sNames As String = "Sheet1, Sheet2"
Const RowCell As String = "A1"
Const FirstVisRow As Long = 2
Const MaxHideRow As Long = 43

If Target.Address(0, 0) = RowCell Then
aNames = Split(sNames, ", ")
ShowHideRows = MaxHideRow - FirstVisRow + 1
Val = Target.Value
ShowRows = IIf(IsEmpty(Val), ShowHideRows, Val)
Application.ScreenUpdating = False
For i = 0 To UBound(aNames)
With Sheets(aNames(i)).Rows(FirstVisRow)
.Resize(ShowHideRows).Hidden = True
If ShowRows > 0 Then .Resize(ShowRows).Hidden = False
End With
Next i
Application.ScreenUpdating = True
End If
End Sub
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Hi

Code:
Dim anames
Private Sub Worksheet_Change(ByVal Target As Range)
Dim first, maxhide, j%, ad
Const sNames$ = "Sheet1, Sheet2"
first = Array(2, 15, 30)
maxhide = Array(10, 20, 40)
ad = Array("a1", "a2", "a3")
If Not Intersect(Target, [a1:a3]) Is Nothing Then
    anames = Split(sNames, ", ")
    Application.ScreenUpdating = False
    For j = LBound(first) To UBound(first)
        Aux first(j), maxhide(j), Range(ad(j))
    Next
    Application.ScreenUpdating = True
End If
End Sub


Sub Aux(ByVal first%, ByVal maxhide%, tgt As Range)
Dim i%, showhide%, showrows%
showhide = maxhide - first + 1
showrows = IIf(IsEmpty(tgt), showhide, tgt)
For i = 0 To UBound(anames)
    With Sheets(anames(i)).Rows(first)
        .Resize(showhide).Hidden = True
        If showrows > 0 Then .Resize(showrows).Hidden = 0
    End With
Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,213,558
Messages
6,114,297
Members
448,564
Latest member
ED38

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