Hide/Unhide Rows based on a calculated cell

tomwhi

New Member
Joined
May 13, 2013
Messages
35
Hi team,

Please can you help me with the following scenario.

I have a calculated cell (D13) which can either be (All), Grade or Rate.

If D13 = (All), I would like Rows 19:52 to be hidden
If D13 = Grade, Only Rows 19:20 to be hidden
If D13 = Rate, Only Rows 22:52 to be hidden

Thank you as always
Tom
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Right click the sheet tab, select View Code and paste in

Code:
Private Sub Worksheet_Calculate()
Application.ScreenUpdating = False
Application.EnableEvents = False
Rows("19:52").Hidden = False
Select Case Range("D13").Value
    Case "(All)": Rows("19:52").Hidden = True
    Case "Grade": Rows("19:20").Hidden = True
    Case "Rate": Rows("22:52").Hidden = True
End Select
Application.ScreenUpdating = True
Application.EnableEvents = True
End Sub
 
Upvote 0
Right click the sheet tab, select View Code and paste in

Code:
Private Sub Worksheet_Calculate()
Application.ScreenUpdating = False
Application.EnableEvents = False
Rows("19:52").Hidden = False
Select Case Range("D13").Value
    Case "(All)": Rows("19:52").Hidden = True
    Case "Grade": Rows("19:20").Hidden = True
    Case "Rate": Rows("22:52").Hidden = True
End Select
Application.ScreenUpdating = True
Application.EnableEvents = True
End Sub

Excellent! thank you
 
Upvote 0

Forum statistics

Threads
1,215,327
Messages
6,124,292
Members
449,149
Latest member
mwdbActuary

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