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

Partial match from unrelated tables .

I have two tables ( not related to each other) A and B. Both of the tables contains about 500,000 rows.

Columns as 

 

A -      Name                      |      Revenue         |       Industry

           Microsoft Company       3.3K                        IT

           Microsoft technology     1.1K                       IT

           HOnda                             5K                         Auto

 

B-  Company_name     |        Index ( Unique Values) 

       Microsft                          1 

        Toyota                            2

        Honda of Texas              3

 

 

 

I want to write a function/Query/ DAX which will create a column in the table A, Basically saying that "take name from the Table A, compare it with Company_name in table B ( partially) and return back the related Index value in Table do it for each row".

 

which will make table A like this:

A -      Name                      |      Revenue         |       Industry |     Index 

           Microsoft Company       3.3K                        IT                   1

           Microsoft technology     1.1K                       IT                    1

           HOnda                             5K                         Auto                3

 

 

1 ACCEPTED SOLUTION

Hi @mahajan

 

You may refer to SEARCH Function. This could help do the fuzzy string comparison. So the two conditions in formula are doing it. If the conditions match, then it returns the index value. Below is the post about SEARCH Function.

https://community.powerbi.com/t5/Desktop/DAX-FIND-or-SEARCH-part-of-a-string-in-a-column/td-p/134518

 

Regards,

Cherie

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-cherch-msft
Employee
Employee

Hi @mahajan

 

You may refer to below formula to create a calculated column.

Index =
CALCULATE (
    MAX ( B[Index] ),
    FILTER (
        B,
        SEARCH ( A[Name], B[Company_name],, 0 ) > 0
            || SEARCH ( B[Company_name], A[Name],, 0 ) > 0
    )
)

1.png

 

Regards,

Cherie

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks for your reply can you put the comments on the code stating what each step is doing? Can It also do the fuzzy string comparison ?

Hi @mahajan

 

You may refer to SEARCH Function. This could help do the fuzzy string comparison. So the two conditions in formula are doing it. If the conditions match, then it returns the index value. Below is the post about SEARCH Function.

https://community.powerbi.com/t5/Desktop/DAX-FIND-or-SEARCH-part-of-a-string-in-a-column/td-p/134518

 

Regards,

Cherie

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.