Dynamic dropdown list based on database

Winnetou

New Member
Joined
Feb 12, 2024
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hi all. I have a sheet with selection options in database format:
TagValue
A123
A234
A321
B12
B34
C1

On a second sheet I want the cells to have a dropdown list based on the filtered value of the database. The value which should be filtered on is in the header row, e.g.:
ACB
dropdown: 123, 234, 321dropdown: 1dropdown: 12, 34
dropdown: 123, 234, 321dropdown: 1dropdown: 12, 34

I can get the values from the database using the formula below, but that doesn't work for dropdown lists as it returns a matrix:
=UNIQUE(FILTER(Table1[Tag]; Table1[Tag]=A$1))

I would like to have it flexible (refererring to the header row) so that the order of the columns can be changed afterwards. Does anyone know how to achieve this?
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Like this ?

Cell E2
Excel Formula:
=TEXTJOIN(", ",,UNIQUE(FILTER(Table1[Value],Table1[Tag]=E1,"")))

1707815447333.png
 
Upvote 0

Forum statistics

Threads
1,215,068
Messages
6,122,950
Members
449,095
Latest member
nmaske

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