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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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