Expand cells when choosing dropdown option

Nick70

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

I have an excel template which can be used by different users.

I would like to have a macro that expands or collapses a group of cells when a specific user-type is chosen in a "user" dropdown.

Details:

Dropdown is found in cell A4 and has option of choosing user A or user B.

If user A is chosen in dropdown then grouped cells A142 to A158 are expanded.
If user B is chosen in dropdown then grouped cells A142 to A158 are collapsed.

How would I do that?

Thanks
Nic
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
if you stick this in the sheet module for that sheet it should do the trick:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Address = "$A$4" Then
        Me.Range("A142:A158").EntireRow.Hidden = (StrComp(Target.Value, "User A", vbTextCompare) <> 0)
    End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,645
Messages
6,120,711
Members
448,984
Latest member
foxpro

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