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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
MvdL
New 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 new columns indicating the Topic and keyword from the second table. 

 

Here are examples:

Main:

IDDateText
12020-05-12Apples and Oranges are great
22020-05-13Random topic that is about vegetables
32020-05-14Bananas are the best
42020-05-14Oranges contain Vitamin C

 

Keywords:

TopicKeyword
Topic1Apples
Topic1Oranges
Topic1Bananas
Topic2Random

 

I want to change Main to:

IDDateTextTopicKeyword
12020-05-12Apples and Oranges are greatTopic1Apples
12020-05-12Apples and Oranges are greatTopic1Oranges
22020-05-13Random topic that is about vegetablesTopic2Random
32020-05-14Bananas are the bestTopic1Bananas
42020-05-14Oranges contain Vitamin CTopic1Oranges

Please note that "1" got duplicated, to also list the keyword Oranges separate. My goal with this is to have a slicer in the visualization that I can used to show all entries with just oranges.

 

Is this possible? I will also take suggestions if there a more elegant way to avoid duplication of the '1' entry 🙂 

 

Thanks in advance!

2 REPLIES 2
MFelix
Super User
Super User

Hi @MvdL 

 

Based on the blog post below you can do a simiçar approach with a measure:

 

https://powerpivotpro.com/2014/01/containsx-finding-if-a-value-in-table-1-has-a-matching-value-in-ta...

 

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.

Search_words.gif

 

Check PBIX file attach.


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Thanks! This works 🙂 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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