In Excel, I would like the displayed/selected value of a Drop Down List to change when a user selects an item from another Drop Down List. (I can already change the options in the list)
Background:
List1
is a drop-down list with the following available entries:
Product1
Product2
List2
is a drop-down list with the following available entries (these are payment periods):
6 (available for Product1 and Product2)
10 (available for Product1 and Product2)
3 (available for Product2)
16 (available for Product2)
20 (available for Product2)
So far, I have managed to update the available drop-down entries in List2
when the selected item in List1
changes. But it is only the drop-down entries which change; the actual currently visible content of List2
does not change.
Issue:
This is not yet what I would like: As soon as the selected item in List1
changes, List2
should immediately display "Please Select" (in addition to List2's
available drop-down entries being updated), so a user is aware that a selection must be made in List2
.
List2
cell a funny-colour if it contains a value that is not valid for thatList1
value (i.e. using=Not(IsError(Match(..)))
in a Conditional Format Formula) – Chronocidal