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
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