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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Tim123
New Member

Count number of times a value appears in multiple columns

I'm new to Power Query, so was hoping to get some help with the following:

 

Say I have a table "Snacks" that records which snack my children eat each day:

 

DateAliceBrandonCharlie
Jan-1AppleBananaPear
Jan-2AppleBananaPear
Jan-3PearApplePear
Jan-4AppleApple

Banana

Jan-5PearBananaBanana
Jan-6AppleBananaBanana

 

I would like to know how many times my children have eaten each type of snack:

 

 AliceBrandonCharlie
Apple420
Banana043
Pear203

 

Any suggestions on how to do this with Power Query?

 

Note that the list of snacks isn't fixed (e.g. Alice might decide to eat Grapes on Jan-7).

1 ACCEPTED SOLUTION
jgeddes
Super User
Super User

Try this...

Select 'Date' and unpivot other columns

Group Rows by Snack and Name, counting the rows.

Pivot the Name column

Sample code...

let
    Source = Table,
    #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(Source, {"Date"}, "Name", "Snack"),
    #"Grouped Rows" = Table.Group(#"Unpivoted Other Columns", {"Snack", "Name"}, {{"Count", each Table.RowCount(_), Int64.Type}}),
    #"Pivoted Column" = Table.Pivot(#"Grouped Rows", List.Distinct(#"Grouped Rows"[Name]), "Name", "Count", List.Sum)
in
    #"Pivoted Column"

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

2 REPLIES 2
jgeddes
Super User
Super User

Try this...

Select 'Date' and unpivot other columns

Group Rows by Snack and Name, counting the rows.

Pivot the Name column

Sample code...

let
    Source = Table,
    #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(Source, {"Date"}, "Name", "Snack"),
    #"Grouped Rows" = Table.Group(#"Unpivoted Other Columns", {"Snack", "Name"}, {{"Count", each Table.RowCount(_), Int64.Type}}),
    #"Pivoted Column" = Table.Pivot(#"Grouped Rows", List.Distinct(#"Grouped Rows"[Name]), "Name", "Count", List.Sum)
in
    #"Pivoted Column"

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Exactly what I was looking for, thanks!

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors