Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi, I have two tables. 1st table contains column with text.
Table1[Text]
This item bought at Amazon |
NETFLIX subscription charge |
Monthly sibscription to Youtube premium |
2nd Table contains keywords.
Table2 [keyword]
Amazon |
NETFLIX |
Youtube |
I am looking for DAX solution to find a keyword in unrelated table amongst the text and return that keyword to the 1st table.
Like this
Text | Keyword |
This item bought at Amazon | Amazon |
NETFLIX subscription charge | NETFLIX |
Monthly sibscription to Youtube premium | Youtube |
This is the closest what I found, but solution is to return YES or NO value.
It says need to use CONCATENATEX et CALCULATETABLE functions, but no idea how these could work.
Would be great to have this resolved! Please.
Solved! Go to Solution.
@llinasG , Try a new column in table 1
Column = Maxx(FILTER(T2,SEARCH(T2[Keywords],T1[Text],,0)>0), T2[Keywords])
Great solution, thanks very much!!!
User | Count |
---|---|
77 | |
74 | |
42 | |
32 | |
28 |
User | Count |
---|---|
100 | |
93 | |
51 | |
50 | |
48 |