Forum Discussion
MvdL
6 years agoNew Member
Add Topic and keyword to main table based on second table
Hello! Hopefully you can all help me, I have a main table with cells with large body of text, then I also have a second table with Topic and keywords fields. In the first table I want to create two ...
MFelix
6 years agoSuper User
Hi MvdL
Based on the blog post below you can do a simiçar approach with a measure:
Add the following measure to your model:
Contains Selected Word =
IF(
SUMX(SUMMARIZE(Keywords;Keywords[Keywords]);
FIND(
UPPER(Keywords[Keywords]);
UPPER(SELECTEDVALUE(Main[Text]))
;;0
)
) > 0;
"Contains Words Selected";
Blank()
)
Now you can filter out the visualization based on the slicer and the measure.
On the image below I have added the filter but only keep the the ones that the measure is not blank.
Check PBIX file attach.
- MvdL6 years agoNew Member
Thanks! This works 🙂