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
arth78
Frequent Visitor

Counting occurences in a BIG text field

Hello,

 

I'm a new user of PowerBI and I would like to count the occurences of a word in a single column (which is a big text field).

The difficulty is the field is a real mess... This is an exemple of a SINGLE LINE

 

"25/04/2014 YBE blablabla...

26/01/2009 MPR ras

25/01/2009 MPR blablabla...

18/02/03 STA1: blablabla..."

Yes, this is a single line, and I have thousand like this in my column.

 

My main goal (per example) is to know how many times appear the word "MPR" in the column, and as you can see, there's multiples occurences of "MPR" in a single line.

 

I have tried a lot of things but nothing fit to my specific need...

 

Any help would be appreciated. 

 

1 ACCEPTED SOLUTION
mike_honey
Memorable Member
Memorable Member

I would calculate this in the Edit Queries window.  I would Add a Custom Column and use a formula like the following:

 

 = List.Count ( Text.Split ( [BIG text field] , "MPR"  ) ) - 1

 

It will split each BIG text field using MPR as a delimiter and then count how many substrings result. 

 

Subtract 1 because Text.Split will always return 1 substring if nothing is found, or 1 more substrings than the number of "hits" you are looking for. 

View solution in original post

1 REPLY 1
mike_honey
Memorable Member
Memorable Member

I would calculate this in the Edit Queries window.  I would Add a Custom Column and use a formula like the following:

 

 = List.Count ( Text.Split ( [BIG text field] , "MPR"  ) ) - 1

 

It will split each BIG text field using MPR as a delimiter and then count how many substrings result. 

 

Subtract 1 because Text.Split will always return 1 substring if nothing is found, or 1 more substrings than the number of "hits" you are looking for. 

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