want to autopopulate dropdown values

vrkpalla

New member
Joined
May 27, 2015
Messages
3
Reaction score
0
Points
0
In Template Sheet, if I select Brand(H) , corresponding Model(I) has to autopopulate and if I select Model(I) ,corresponding Type(J) has to autopopulate.

In VehData sheet following are the columns.
H,I,J,N,O

This data are dynamic. Application generating this data.
Brand can have multiple models and models can have multiple types.
kindly help on this.
 

Attachments

  • Data.xlsx
    17.6 KB · Views: 9
Can you either supply the password for the protected sheet, or re-upload the workbook with no password protection.
 
Can you either supply the password for the protected sheet, or re-upload the workbook with no password protection.

Actuall first uploaded one is application generation basing on VehUploadTemplate.xls which i have uploaded now.

thx for your reply
 

Attachments

  • VehUploadTemplate.xlsx
    14.9 KB · Views: 11
not sure what is wrong with your named ranges...

First rename the BrandModelTable as BMT by creating a new Named Range referencing the table, then use this in data validation for Model

=OFFSET(INDEX(BMT,MATCH(H2,INDEX(BMT,0,1),0),2),,,COUNTIF(INDEX(BMT,0,1),H2),1)
 
not sure what is wrong with your named ranges...

First rename the BrandModelTable as BMT by creating a new Named Range referencing the table, then use this in data validation for Model

=OFFSET(INDEX(BMT,MATCH(H2,INDEX(BMT,0,1),0),2),,,COUNTIF(INDEX(BMT,0,1),H2),1)


Thank you .

But this has not served my requirement .
Below is worked for me.
=OFFSET(VehData!$I$1,MATCH(Template!D16,BrandModelTable[Brand],0),1,COUNTIF(BrandModelTable[Brand],Template!D16),1)
 
Back
Top