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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

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
Microsoft Employee
Microsoft 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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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