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
IvanMislav
Helper I
Helper I

Count of occurences within a row

I was wondering is there a function that could calculate number of occurences within one row? 

For example, i want to calculate the number of times word "red" occures within a row.

 

Result would look something like this:

 

 

     Color                |  Red  |  Blue

------------------------------------

 Red, Blue, Red      |   2     |  1

------------------------------------

  Red, Red, Red      |    3    |   0

 

Thanks

1 REPLY 1
v-xiandat-msft
Community Support
Community Support

Hi @IvanMislav ,

The following DAX might work for you:

Red = var a=ADDCOLUMNS(GENERATESERIES(1,PATHLENGTH(max(Table1[Column]))),"Item",PATHITEM(MAX(Table1[Column]),[Value]))
return COUNTROWS(FILTER(a,[Item]="red"))
blue = var a=ADDCOLUMNS(GENERATESERIES(1,PATHLENGTH(max(Table1[Column]))),"Item",PATHITEM(MAX(Table1[Column]),[Value]))
return COUNTROWS(FILTER(a,[Item]="blue"))+0

The final output is shown in the following figure:

vxiandatmsft_0-1698828176141.png

Best Regards,

Xianda Tang

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

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