Hello, all
There was a similar example given in the forum with Country (US, Canada) and Regions. As a solution the VBA code was provided.
************************************************************
*************************************************************![]()
Private Sub Worksheet_Change(ByVal Target As Range) If Target = Range("A2") Then Target.Offset(0, 1).Value = "" End If End Sub
I am more or less struggeling with adopting the code to my specific case.
Problem Statement:
I have two drop down lists 1) Finance Bucket and 2) Finance Request Type
Finance Bucket has list: [GENERAL, SPECIFIC]
If "GENERAL" is selected, [Warranty, Warranty_LU] is listed in the 2nd drop down list
If "SPECIFIC" is selected, [WARRANTY_NU, WARRANTY_RS] is listed in the 2nd drop down list
I am just using some dummy wordings due to privacy reasons.
Scenario:
First, I select "GENERAL" and choose the Finance Request Type to "Warranty". This is correct!
Next I change the Finance Bucket to "SPECIFIC" and forget to update the Finance Request Type to either WARRARY_NU or WARRANTY_RS
Question:
If the primary list is changed, how can I make the 2nd drop down list to show a default value (e.g. blank)?
Could someone help? I have a serious problem with this issue. Example EXCEL file is attached below
Thanks in advance
Bookmarks