VBA to expand grouped rows based on condition

Mandy_84

Board Regular
Joined
May 29, 2017
Messages
71
Hi All!

I'm trying to ungroup the rows based on condition in the cell. Trying below code, but it doesn't work. Would you pls take a look?

Sub Worksheet_Change(ByVal Target As Range)
With ActiveSheet
If .Range("B20").Value = "Yes" Then
With .Range("A25").EntireRow
If .ShowDetail = False Then
.ShowDetail = True
End If
End With
ElseIf Range("B20").Value = "No" Then
With .Range("A25").EntireRow
If .ShowDetail = False Then
.ShowDetail = True
End If
End With
End If
End With
End Sub
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
I believe this will do what you want;

VBA Code:
Sub Worksheet_Change(ByVal Target As Range)
        If ActiveSheet.Range("B20").Value = "Yes" Then
            ActiveSheet.Range("A25").EntireRow.Hidden = False
        ElseIf Range("B20").Value = "No" Then
            ActiveSheet.Range("A25").EntireRow.Hidden = True
        End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,196
Members
449,072
Latest member
DW Draft

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