Drop Down List to default to empty

operationsboy1990

New Member
Joined
Nov 2, 2016
Messages
8
I have 3 drop down lists. The first cell is the product, second cell is the make and third cell is the model. Cell 2 is dependent on cell 1 and cell 3 is dependent on cell 2

However, when I delete the first cell I want the remaining two to reset back to empty. The only way that is possible according to my research is to use a Macro code. Is there anything else I can do besides that?

Cell 1:=OFFSET(Lists!B1,1,0,COUNTA(Lists!B:B)-1,1)
Cell 2:=OFFSET(Lists!$D$1,MATCH(B9,Lists!$D:$D,0)-1,1,COUNTIF(Lists!$D:$D,B9),1)
Cell 3:=OFFSET(Lists!$G$1,MATCH(C9,Lists!$G:$G,0)-1,1,COUNTIF(Lists!$G:$G,C9),1)

Can I add anything to the Data Validation formula to make what I want happen? Or is Macro the only possible way
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Try with an IF statement for Cells 2 &3:
Code:
=IF(ISBLANK([COLOR=#0000ff][I]CELL1[/I][/COLOR]),"",OFFSET(..........))
If the cell will still contain a formula which evaluates to zero length string:
Code:
=IF([COLOR=#0000ff][I]CELL1[/I][/COLOR]=""[COLOR=#0000ff][/COLOR],"",OFFSET(..........))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,949
Messages
6,127,880
Members
449,411
Latest member
AppellatePerson

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