Lookup Help without Duplication

Blake86

New Member
Joined
Sep 30, 2024
Messages
2
Office Version
  1. 365
Platform
  1. Windows
I am attempting to have this autofill when I use a drop down. I tried to simplify this as much as possible. I am trying to make it so when I use the drop down for type ("A","B","C") it fills in the corresponding "Item name" into the "item A" list same with "Item B" and "Item C". I can get it to pull the data I want with XLOOKUP, but I cannot figure out how to get it to not duplicate or always take the first match to "A/B/C" for the lookup_value after the first match.

-Not all items will have types
-The "Type" column is a drop down from "Column1"

1727728812755.png
 

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.
Is this right for you?
Book1.xlsm
DEFGHI
20TypeItem nameItemAItemBItemC
21AZZYV
22BYX
23AX
24W
25CV
Sheet2
Cell Formulas
RangeFormula
G21:G22G21=FILTER(E21:E25,D21:D25="A")
H21H21=FILTER(E21:E25,D21:D25="B")
I21I21=FILTER(E21:E25,D21:D25="C")
Dynamic array formulas.
Cells with Data Validation
CellAllowCriteria
D21:D25ListA;B;C
 
Upvote 0
Is this right for you?
Book1.xlsm
DEFGHI
20TypeItem nameItemAItemBItemC
21AZZYV
22BYX
23AX
24W
25CV
Sheet2
Cell Formulas
RangeFormula
G21:G22G21=FILTER(E21:E25,D21:D25="A")
H21H21=FILTER(E21:E25,D21:D25="B")
I21I21=FILTER(E21:E25,D21:D25="C")
Dynamic array formulas.
Cells with Data Validation
CellAllowCriteria
D21:D25ListA;B;C
This will work! THANK YOU!!
 
Upvote 0

Forum statistics

Threads
1,222,902
Messages
6,168,938
Members
452,227
Latest member
sam1121

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