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
Brandonkersgoed
Frequent Visitor

Lookup partial text from unrelated table

Hey, 

I'm new to DAX and am having some difficulty looking up partial text matches from an unrelated table. I'm hoping to run comparisons on company names, I essentially want to add a column to Table 1 that just has the company names, and in table 2 I have the names of all the companies we work with. Sample columns from tables as follows, any help would be greatly appreciated:

Table 1 Column:

Company Product
Generic Life Insurance Company Term 10
Another Generic Life Insurance Company Whole Life
Generic Life Insurance Company Term 20
3rd life insurance company term 20
term 20

 

Table 2 Column

Company Name
Generic Life Insurance Company
Another Generic Life Insurance Company
3rd life insurance company
1 ACCEPTED SOLUTION
Brandonkersgoed
Frequent Visitor

For anyone reading who needs an answer, this thread had what I was after:

 

https://community.powerbi.com/t5/Desktop/Partial-match-from-unrelated-tables/m-p/573100

View solution in original post

4 REPLIES 4
Brandonkersgoed
Frequent Visitor

For anyone reading who needs an answer, this thread had what I was after:

 

https://community.powerbi.com/t5/Desktop/Partial-match-from-unrelated-tables/m-p/573100

Brandonkersgoed
Frequent Visitor

Hi @tamerj1 Thanks for the help,

 

However the column came up blank (no errors at least!) 

I tried updating to the following as the product names and company names are on separate tables, I imagine I made a mistake somewhere:

Company = MAXX (
    FILTER (
        'Table 2',
        CONTAINSSTRING ( 'Table 2'[Company Name], 'Table 1'[product name] )
    ),
    'Table 2'[Company Name]
)

@Brandonkersgoed 

You are right. Totally my mistake 

Company = MAXX (
    FILTER (
        'Table 2',
        CONTAINSSTRING ( 'Table 1'[Company Name], 'Table 2'[product name] )
    ),
    'Table 2'[Company Name]
)
tamerj1
Super User
Super User

Hi @Brandonkersgoed 

please try

NewColumn =
MAXX (
    FILTER (
        'Table 2',
        CONTAINSSTRING ( 'Table 2'[Company Name], 'Table 2'[Product Name] )
    ),
    'Table 2'[Company Name]
)

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