Checkbox to show/hide rows on two sheets

lager28

New Member
Joined
Jul 30, 2019
Messages
9
I have a workbook with three worksheets. On the first worksheet the user is asked to identify the discipline that relates to their project using an Active X Checkbox.

So, they might select "Electrical" and "Mechanical" but not "Architectural".

Based on their selection, corresponding rows will appear on the active worksheet (let's say sheet1) as well as sheet 2.

I have managed to figure out how to do this on the active worksheet using the following code for each checkbox (I have 8 checkboxes):

VBA Code:
Private Sub CheckBox1_Click()
    [22:25].EntireRow.Hidden = Not CheckBox1
End Sub

What I cannot figure out is how to get the same result for an array of rows on sheet 2 that have the word "Electrical" or "Mechanical" in column A".

Any help is appreciated.
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Maybe
VBA Code:
Private Sub CheckBox1_Click()
     [22:25].EntireRow.Hidden = Not CheckBox1
     Sheets("Sheet2").row("22:25").EntireRow.Hidden = Not CheckBox1
End Sub
 
Upvote 0

Forum statistics

Threads
1,216,079
Messages
6,128,687
Members
449,464
Latest member
againofsoul

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