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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
fhfon
Regular Visitor

Lookupvalue between tables with partial text

Hello all,

 

I need a help with the situation below.

 

I have two table:

 

Table1:

Part numberDescriptionStatus
1252BearingCritical
993FilterNon critical

 

Table2:

DescriptionStatus
Bearing 3cm stainless steel 
Exhaust HEPA Filter 

 

What I need is kind a "lookupvalue" with partial text that will bring the status from the table1 to table2, but the issue is that description in table2 has more information.

 

Please, HELP me!  🙂

 

Att.

Fernando Nobre

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@fhfon , Try a new column in Table2 like

 

Maxx(filter(Table1, search(Table1[Description], Table2[Description],,0) >0 ), Table1[Status])

View solution in original post

Thank you!

 

This worked as I wanted.

View solution in original post

4 REPLIES 4
smpa01
Super User
Super User

@fhfon  you can write a measure like this

Measure =
MAXX (
    FILTER (
        CROSSJOIN (
            VALUES ( 'Table 2'[Description] ),
            SELECTCOLUMNS (
                SUMMARIZE ( 'Table 1', 'Table 1'[Description], 'Table 1'[Status] ),
                "_description", [Description],
                "status", [Status]
            )
        ),
        CONTAINSSTRING ( [Description], [_description] )
    ),
    [status]
)

 

smpa01_0-1639665954457.png

 

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

Thanks! But I could not make this work.

amitchandak
Super User
Super User

@fhfon , Try a new column in Table2 like

 

Maxx(filter(Table1, search(Table1[Description], Table2[Description],,0) >0 ), Table1[Status])

Thank you!

 

This worked as I wanted.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors