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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
tgjones43
Helper IV
Helper IV

Count text values across multiple columns for each row

Hello all, I have searched the forum for a solution to this but haven't managed to find what I need.

 

I have the following dataset and need to count the occurrences of each two letter code in columns [Spot 1] to [Spot 10] for each row. The result I'm hoping for is shown in the final 5 columns, as highlighted in bold.

 

SiteCategorySpot 1Spot 2Spot 3Spot 4Spot 5Spot 6Spot 7Spot 8Spot 9Spot 10NOEACLRSSC
AANONONONONONONONONONO10nullnullnullnull
ABEAEAEACLEAEAEAEACLEAnull82nullnull
BASCNONONONONONONONONO9nullnullnull1
BBRSRSRSRSCLCLRSRSRSRS,CLnullnull38null

 

It is complicated by there being some occurrences of two codes, separated by a comma, as you can see in the last row for [Spot 10].

 

I'd prefer to do this in the Query Editor. Any help would be greatly appreciated!

 

 

 

 

 

 

 

1 ACCEPTED SOLUTION

@tgjones43 

 

In that case

 

=List.Count(
                 List.Select(
  Text.Split(
Text.Combine(
List.Transform(Record.ToList(_),each Text.From(_))
        ,",")
,
","
                ),each _ ="CL")
)

View solution in original post

14 REPLIES 14
EugenioJunior
Frequent Visitor

Hi, @tgjones43 

 

What if you slice when there are two records for the same column?

Hi @EugenioJunior, yes I could do that. So in the example, [Spot 10] is transformed into two columns; [Spot 10.1] and [Spot 10.2]

So it worked?

@tgjones43 @EugenioJunior 

 

Just another way could be yo use this Custom Column

 

For example for CL

 

=List.Count(
List.Select(
Text.Split(
Text.Combine(Record.ToList(_),","),
","
),each _ ="CL"))

 

Thank you @Zubair_Muhammad, that works nicely. Only problem is that, unlike in my example, I have a couple of numeric columns in my table, which lead to an error. Is there a way to ammend your code so that it looks at the [Spot] columns only?

 

Thanks @EugenioJunior, the splitting advice helps, but it is the code to create the final five columns in my example that I really needed.

@tgjones43 

 

In that case

 

=List.Count(
                 List.Select(
  Text.Split(
Text.Combine(
List.Transform(Record.ToList(_),each Text.From(_))
        ,",")
,
","
                ),each _ ="CL")
)

Thanks @Zubair_Muhammad, it is giving the following error though:

 

Expression.Error: The name '_' wasn't recognized. Make sure it's spelled correctly.

Hi @tgjones43 

 

Please see the attached file's Query Editor for the custom column.

 

Let me know if it helps

 

 

Thanks @Zubair_Muhammad for the file but I cannot open it, I get a message saying 'it's incompatiable with your current version of Power BI' (my company is using October 2018).

 

Is there anything else we could try?

Could you show me the screen shot of your custom column

Sure, here it is

 

CustomColumnScreenshot.PNG

@tgjones43 

 

You need to place the formula, I provided above in a new custom column as shown in pic below

 

cf.png

@Zubair_Muhammadthat has done it, thank you so much.

 

Why does the formula need to be presented like that, rather than on one line like I had it?

Hi @tgjones43 

The formula bar shows the Complete M Code for the step.
The Custom Column just shows the formula part

 

You can also view the entire code for the Query from View Tab>>Advanced Editor.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors