Mirror drop down list

Sylly

New Member
Joined
Dec 17, 2020
Messages
2
Office Version
  1. 2010
Platform
  1. Windows
I have a problem, want to mirror a drop down list on 2 sheets so that when one or other is changed they both change to that same value
I have created the first drop down list using DATA VALIDATION from a table on another sheet.
I have then gone on to my second sheet where I want the mirrored drop down list to be and gone into DATA VALIDATION
LIST and then =INDIRECT and navigated to the sheet with the original drop down list on but it just wont let me select the cell
containing that drop down list.

Does anybody have a solution for me.
I have named the cell range for the original drop down list too but this also does not work

Please help

Many thanks
Sylly
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
You would only be able to do that with VBA. Is that an option?
 
Upvote 0
I have tried this with VBA but it sends into a feedback loop. Because there is a Private Sub on both the pages that contain the drop down lists and the macro it triggers
copies the contents of the drop down list that has just been changed into the other drop down list, however that then triggers the same macro in reverse and then it loops endlessly. I also have about 10 drop down lists mirrored on both pages that need to change when the other changes.

This is a bit of a problem that I need to solve fairly urgently.

Below is the code I am using on one of the pages, the same code triggering MACRO_2_TEST etc is on the other page with
the reverse copy in it.


VBA Code:
Private Sub Worksheet_Change (ByVal Target As Range)

    
    Select Case Target.Address
        Case Is = "$A$1"
            Select Case Target.Value
                Case "UK": MACRO_1_TEST
                Case "France": MACRO_1_TEST
                Case "Spain": MACRO_1_TEST
            End Select
        Case Is = "$A$4"
            Select Case Target.Value
                Case "YES": MACRO_1_1_TEST
                Case "NO": MACRO_1_1_TEST
                Case "MAYBE": MACRO_1_1_TEST
            End Select
    End Select

End Sub


Thanks
Sylly
 
Upvote 0
What is the name of the other sheet?
 
Upvote 0

Forum statistics

Threads
1,214,643
Messages
6,120,707
Members
448,981
Latest member
recon11bucks

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