Forum Discussion
bengal1022
Apr 30, 2020Copper Contributor
Drop Down List with Linked Columns
Hello: I am trying to figure out how to create a drop down list with multiple linked columns; but let me explain as it is different from what I am seeing on the forum and other sites. I have...
- Apr 30, 2020
I'd create two named ranges
one for data validation list
='Vendor Contacts'!$A$2:INDEX('Vendor Contacts'!$A:$A,COUNTA('Vendor Contacts'!$A:$A))
and another for vendor info range
='Vendor Contacts'!$B$2:INDEX('Vendor Contacts'!$D:$D,COUNTA('Vendor Contacts'!$A:$A))
using first in data validation and second to pickup the info as
=IFNA(INDEX(VendorsRange,MATCH($L2,VendorsList,0),MATCH(M$1,'Vendor Contacts'!$B$1:$D$1,0)),"")
SergeiBaklan
Apr 30, 2020MVP
I'd create two named ranges
one for data validation list
='Vendor Contacts'!$A$2:INDEX('Vendor Contacts'!$A:$A,COUNTA('Vendor Contacts'!$A:$A))
and another for vendor info range
='Vendor Contacts'!$B$2:INDEX('Vendor Contacts'!$D:$D,COUNTA('Vendor Contacts'!$A:$A))
using first in data validation and second to pickup the info as
=IFNA(INDEX(VendorsRange,MATCH($L2,VendorsList,0),MATCH(M$1,'Vendor Contacts'!$B$1:$D$1,0)),"")
joshnoteboom
May 14, 2024Copper Contributor
SergeiBaklan Hello, is there a way to do this on excel teams? Excel online. Im running into this issue of not having a name manager. THanks!
- SergeiBaklanMay 14, 2024MVP
That's not necessary. Instead of named formulae you may create helper range(s) at any place of the worksheet like
and reference data validation list as