Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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 |
Solved! Go to Solution.
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
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
Hi there - This works well, but i feel like it takes so long. I am extracting text from an unrelated column and it takes forever to run. I was wondering if this could be done as a calculated table?
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:
You are right. Totally my mistake
Company = MAXX (
FILTER (
'Table 2',
CONTAINSSTRING ( 'Table 1'[Company Name], 'Table 2'[product name] )
),
'Table 2'[Company Name]
)
please try
NewColumn =
MAXX (
FILTER (
'Table 2',
CONTAINSSTRING ( 'Table 2'[Company Name], 'Table 2'[Product Name] )
),
'Table 2'[Company Name]
)
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
9 | |
8 | |
8 |
User | Count |
---|---|
14 | |
12 | |
11 | |
11 | |
8 |