Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
ScORE
Helper I
Helper I

Need help with looking up multiple values from an unrelated table

I need help!  I have a table with multiple values listed, seperated with commas. I need to look up the category, but it is in a seperate unrelated table.  I want it to return all of the values from the category for each item in the cell.  Ideally, I would like to have just one category returned, even if the category has two food matches.

 

Column in my table

Food
Apples, Cherries, Celery, bread
Apples, Cheese, Celery, bread

 

Desired output

Value I want from look up
Fruit, Vegetable, Grain
Fruit,Dairy, Vegetable, Grain

 

look up from this table

FoodCategory
ApplesFruit
CherriesFruit
CeleryVegetable
BreadGrain
CheeseDairy

 

1 ACCEPTED SOLUTION
DataInsights
Super User
Super User

@ScORE,

 

Try this calculated column in MainTable (your first table):

 

Categories = 
VAR vCategories =
    FILTER ( LookupTable, CONTAINSSTRING ( MainTable[Food], LookupTable[Food] ) )
VAR vDistinctCategories =
    SUMMARIZE ( vCategories, LookupTable[Category] )
VAR vResult =
    CONCATENATEX ( vDistinctCategories, LookupTable[Category], ", " )
RETURN
    vResult

 

DataInsights_0-1710254041414.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
DataInsights
Super User
Super User

@ScORE,

 

Try this calculated column in MainTable (your first table):

 

Categories = 
VAR vCategories =
    FILTER ( LookupTable, CONTAINSSTRING ( MainTable[Food], LookupTable[Food] ) )
VAR vDistinctCategories =
    SUMMARIZE ( vCategories, LookupTable[Category] )
VAR vResult =
    CONCATENATEX ( vDistinctCategories, LookupTable[Category], ", " )
RETURN
    vResult

 

DataInsights_0-1710254041414.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Worked Phenomonally!  Thank you!  My apologies for the delay responding, unfortunately I have to blame Spring Break 😎

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.