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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Anonymous
Not applicable

text parsing mixed with a lookup value

I currently have a colum with very long descriptions that I would like to parse by searching for specific text, then return the category it belongs in.

 

TABLE A:

Line Description
po invoice id 21934i148 taxes on added funds

refrigeration coolant repairs

new refrigerator installation PO

 

TABLE B:

searchforreturnvalue
refrigRefrigeration
taxTaxes

 

Obviously i have many more categories, but would only like the return value to be ONE individual category (i.e. if a description were "Refrigerator taxes" i would want the first value to be returned, so in this case "Refrigeration").

 

Is there a way to do this by referencing a table such as Table B?

 

Currently my formula is very long and manual to update and looks like this:

Parse =
IF(
SEARCH("refrig",'2020 GLAP'[Line Description],,0) > 0, "Refrigeration",
IF(SEARCH("plumb",'2020 GLAP'[Line Description],,0) > 0, "Plumbing", "OTHER"))
 
However, in the SEARCH formula, i can't reference a separate table otherwise it errors. Does anyone have any tips on this?
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

You can create one measure as below:

text parsing.JPG

ReturnNValue =
CALCULATE (
    MAX ( 'Search'[returnvalue] ),
    FILTER (
        'Search',
        FIND ( 'Search'[searchfor], MAX ( '2020 GLAP'[Line Description] ), 1, 0 ) > 0
    )
)

Best Regards

Rena

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

You can create one measure as below:

text parsing.JPG

ReturnNValue =
CALCULATE (
    MAX ( 'Search'[returnvalue] ),
    FILTER (
        'Search',
        FIND ( 'Search'[searchfor], MAX ( '2020 GLAP'[Line Description] ), 1, 0 ) > 0
    )
)

Best Regards

Rena

amitchandak
Super User
Super User

Try a new column in table 1

 

New column in Table 1 = minx(filter(table2,search(Table2[searchfor],Table1[Line Description],1,0)>0),Table2[returnvalue])

 

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution.
In case it does not help, please provide additional information and mark me with @

Thanks. My Recent Blogs -Decoding Direct Query - Time Intelligence, Winner Coloring on MAP, HR Analytics, Power BI Working with Non-Standard TimeAnd Comparing Data Across Date Ranges
Proud to be a Datanaut Connect on Linkedin

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

May 2025 Monthly Update

Fabric Community Update - May 2025

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