Hiding rows based on criteria working, however now unhiding based on selection changing

Lifterlady16

New Member
Joined
Aug 14, 2018
Messages
6
I've used a formula found in another post that is working for me, currently. It's to Hide rows based on a particular criteria as you select fields. However, if the user goes back and changes the criteria, it does not unhide the row in question. How do I alter this code to then unhide if the criteria changes?

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Range("B5").Value = "No" Then
        Rows("6:6").EntireRow.Hidden = True
    ElseIf Range("B6").Value = "Yes" Then
        Rows("6:6").EntireRow.Hidden = False
    End If
End Sub
[code]
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Hi & welcome to MrExcel
How are B5 & B6 being populated?
If you're happy just using B5 you can use this
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
   Rows(6).Hidden = Range("B5").Value = "No"
End Sub
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,591
Messages
6,120,427
Members
448,961
Latest member
nzskater

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