Dropdown menus on separate sheets mirroring each other

mark9988

Board Regular
Joined
Sep 30, 2005
Messages
90
Hello,

I have identical dropdown validation menus on 4 separate sheets. I would like for them to mirror each other, so that:

If I select "Hot" from the dropdown in sheet 1, it then it automatically changes to "Hot" across the dropdowns in remaining sheets (sheet 2, 3, 4).

or

If I select "Cold" from the dropdown in sheet 3, it then it automatically changes to "Cold" across the dropdowns in remaining sheets (sheet 1,2,4).


Best,
Mark9988
 
Below is my script allowing for one validation box on each sheet:

Private Sub Worksheet_Change(ByVal Target As Range)
'Modified 2/16/2022 5:31:14 PM EST
If Target.Address = "$C$4" Then
Application.EnableEvents = False
Sheets(1).Range("C4").Value = Target.Value
Sheets(2).Range("G3").Value = Target.Value
Sheets(3).Range("A1").Value = Target.Value
Sheets(4).Range("A1").Value = Target.Value
Application.EnableEvents = True
End If
End Sub


As I attempted to add two validation boxes to sheet(1), I tried this but no luck:

Private Sub Worksheet_Change(ByVal Target As Range)
'Modified 2/16/2022 5:31:14 PM EST
If Target.Address = "$C$4" Then
If Target.Address = "$C$5" Then
Application.EnableEvents = False
Sheets(1).Range("C4").Value = Target.Value
Sheets(1).Range("C5").Value = Target.Value
Sheets(2).Range("G3").Value = Target.Value
Sheets(3).Range("A1").Value = Target.Value
Sheets(4).Range("A1").Value = Target.Value
Application.EnableEvents = True
End If
End Sub
 
Upvote 0

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.

Forum statistics

Threads
1,214,653
Messages
6,120,748
Members
448,989
Latest member
mariah3

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