+ Reply to Thread
Results 1 to 6 of 6

Dependent data validation question

Hybrid View

  1. #1
    Registered User
    Join Date
    03-08-2008
    Location
    Rhode Island
    MS-Off Ver
    2007
    Posts
    25

    Dependent data validation question

    Good morning,

    I have a sheet with 2 drop down lists using data validation, the second list will populate based on the value chosen in the first. My question is, when changing the independent list, the value in the dependent list remains the same. Is there any way to have the dependent value clear upon choosing a new value in the independent list?

    Thanks in advance,
    Chris

  2. #2
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582
    You'll need to use Visual Basic for that. Here's one solution.
    Right click on the sheet tab and choose "View Code"
    Paste this code
    Private Sub Worksheet_Change(ByVal Target As Range)
    If Target = Range("A2") Then
    Range("B2").ClearContents
    End If
    
    End Sub
    This assumes your initial list is in A2 with your dependent list in B2. Does this work for you?
    ChemistB
    My 2?

    substitute commas with semi-colons if your region settings requires
    Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
    If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  3. #3
    Registered User
    Join Date
    03-08-2008
    Location
    Rhode Island
    MS-Off Ver
    2007
    Posts
    25
    Thanks for the quick reply. The only problem I'm having is that my dependent list is part of a merged cell and I'm getting a run time error 1004 cannot change part of a merged cell. Anyway around this that you know of?

    Thanks,
    Chris

  4. #4
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582
    First thought is "Don't used merged cells." (You'll see that again and again on these forums) Can you change it? Is it merged rows or merged columns? With Columns, you can use Cell alignment >Center across selection instead of merging. If you can't unmerge them, what cells do you have merged and I'll try to rewrite the code.

  5. #5
    Registered User
    Join Date
    03-08-2008
    Location
    Rhode Island
    MS-Off Ver
    2007
    Posts
    25
    Sorry about the merged cells, I use them instead of changing column widths. I am merging across columns, columns A-C to be exact.

    Thanks,
    Chris

  6. #6
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259
    Hello MGT2000,

    It is only problem when you don't know how to deal with it. Here is a code example that checks if the cell is part of a merged group of cells and clears the merged range or the single cell.
    Sub ClearCell()
    
      Dim Rng As Range
      
        Set Rng = Range("D2")
        
          If Rng.MergeCells = True Then
            Rng.MergeArea.ClearContents
          Else
            Rng.ClearContents
          End If
              
    End Sub
    Sicnerely,
    Leith Ross

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1