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
Lebunim
Regular Visitor

Count Keywords in Summary Column from another table

Hi Guys, 

I tried to find solution in the Forum but failed each and everytime. 

I'm actually looking for a simple thing, I have two tables :

1. Keywords

2. Incidents

 

I want to know how many times Keywords from Keywords Table occure in the Incidents Summary column. 

I just need a count. In Excel COUNTIF worked perfect but I wanted to extend that functionality into PBI.

 

Can You please help me created a formula for Count of Word Appearance column in Table 1? 

 

Table 1 - Keywords Table 2 - Incidents
KeywordsCount of word appearance  Summary
issue 2 The phone has an issue with application 
down 0 more text with issues
is down 0 each ticket has summary with outage description 
has problem 1 outlining the problem 
outage 1 and the so on….
application 1  
server 0  
phone1  

 

 

Can You please help me created a formula for Count of Word Appearance column in Table 1?

 

Many thanks, 

 

1 ACCEPTED SOLUTION
v-chenwuz-msft
Community Support
Community Support

Hi @Lebunim ,

 

You can try use substitute() to replace the word in this summary string to null. Then calculate the reduced number of characters, finally divide it by the length of keyword.

Modify the measure to suit your mode.

count word =
VAR _text =
    FIRSTNONBLANK ( 'Table 2 - Incidents'[text], 1 )
VAR _len_text =
    LEN ( _text )
VAR _len_key =
    LEN ( [Keywords] )
VAR _substitute =
    LEN ( SUBSTITUTE ( _text, [Keywords], "" ) )
RETURN
    DIVIDE ( _len_text - _substitute, _len_key )

 

Result: 

vchenwuzmsft_1-1646030492567.png

Pbix in the end you can refer.

Best Regards

Community Support Team _ chenwu zhu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

5 REPLIES 5
v-chenwuz-msft
Community Support
Community Support

Hi @Lebunim ,

 

You can try use substitute() to replace the word in this summary string to null. Then calculate the reduced number of characters, finally divide it by the length of keyword.

Modify the measure to suit your mode.

count word =
VAR _text =
    FIRSTNONBLANK ( 'Table 2 - Incidents'[text], 1 )
VAR _len_text =
    LEN ( _text )
VAR _len_key =
    LEN ( [Keywords] )
VAR _substitute =
    LEN ( SUBSTITUTE ( _text, [Keywords], "" ) )
RETURN
    DIVIDE ( _len_text - _substitute, _len_key )

 

Result: 

vchenwuzmsft_1-1646030492567.png

Pbix in the end you can refer.

Best Regards

Community Support Team _ chenwu zhu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

mh2587
Super User
Super User

create calculated column 

Match = 
var _cname = 'Table'[Customer Name]
var _iname = 'Table'[Invoice Customer]
var _firstname = LEFT(_cname,SEARCH(" ",_cname)-1)
var _lastname = MID(_cname,SEARCH(" ",_cname)+1,LEN(_cname))
return
IF(
    EXACT([Customer Name],[Invoice Customer]),
    "Match",
    IF(
           NOT(CONTAINSSTRING(_iname,_firstname))&&NOT(CONTAINSSTRING(_iname,_lastname)),
           "Not Match",
           IF(
               CONTAINSSTRING(_iname,_firstname)||CONTAINSSTRING(_iname,_lastname),
               "Partial Match"
           )
    )
)

And modify with your requirements


Did I answer your question? If so, please mark my post as a solution!


Proud to be a Super User!




LinkedIn Icon
Muhammad Hasnain



mh2587
Super User
Super User

https://community.powerbi.com/t5/Desktop/Extract-numerous-Key-words-from-sentences-in-a-cloumn/td-p/...


Did I answer your question? If so, please mark my post as a solution!


Proud to be a Super User!




LinkedIn Icon
Muhammad Hasnain



Samarth_18
Community Champion
Community Champion

Hi @Lebunim ,

 

Create a measure like below:-

Count of word appearance =
COUNTROWS (
    FILTER (
        _Incidents,
        CONTAINSSTRING ( _Incidents[Summary], MAX ( _Keyword[Keywords] ) )
    )
) + 0

Output:-

Samarth_18_0-1645601864540.png

 

 

Thanks,

Samarth

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

What does the MAX represent in above example. I'm getting some values but not exactly as I would expect it. 

This measure returns rows with "exact" match of the Keyword, it does not identify a keyword in between other text..... 

Example 1 : would count "application"

Example 2 : would not count " my new application is down" 

 

I'm not sure why but it seems the above measure counts rows with exact match of the keyword, anything with additional text is being skipped....

 

Any ideas?

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.

Top Solution Authors