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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
jerryr0125
New Member

Count of subcategories

Hi everyone  Using Power Query -

I am looking to do a count of subcategories by creating a new custom column.

Example:

 

Field-MainCategoryField-subcategory
A55
A33
B33
B

44

C77
D55
D44
D77



New

 

 

Field-MainCategoryField-subcategoryField-scount
A552
A332
B332
B

44

2

C771
D553
D443
D773

 

Basically - I am looking to create a new field Field-scount which is a count of occurances of the Field-MainCategory,

There are other important columns in the table so a group by will not do the trick.

 

Any ideas ? Thanks - Jerry

1 ACCEPTED SOLUTION
AlienSx
Super User
Super User

group by category, keep all rows as one column, count rows in 2nd and expand table column after. 

let
    Source = Excel.CurrentWorkbook(){[Name="Table2"]}[Content], 
    group = Table.Group(Source, "Field-MainCategory", {{"all", each _}, {"Field-scount", Table.RowCount}}),
    expand = Table.ExpandTableColumn(group, "all", {"Field-subcategory"})
in
    expand

View solution in original post

1 REPLY 1
AlienSx
Super User
Super User

group by category, keep all rows as one column, count rows in 2nd and expand table column after. 

let
    Source = Excel.CurrentWorkbook(){[Name="Table2"]}[Content], 
    group = Table.Group(Source, "Field-MainCategory", {{"all", each _}, {"Field-scount", Table.RowCount}}),
    expand = Table.ExpandTableColumn(group, "all", {"Field-subcategory"})
in
    expand

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

August Carousel

Fabric Community Update - August 2024

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

Top Solution Authors
Top Kudoed Authors