Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Power Query help to calculate count column.
if Store is same and Brand and type is also same for all rows then count should be 1. (from below example Apple)
If store is same but two different combination of Brand and Type then count should be 2 and so on. (From below example Samsung)
Data
| Brand | Type | Store |
| Apple | Iphone | NYC |
| Apple | Iphone | NYC |
| Samsung | S22 | NJ |
| Samsung | S21 | NJ |
| Samsung | S21 | NJ |
Result
| Brand | Type | Store | Count |
| Apple | Iphone | NYC | 1 |
| Apple | Iphone | NYC | 1 |
| Samsung | S22 | NJ | 2 |
| Samsung | S21 | NJ | 2 |
| Samsung | S21 | NJ | 2 |
Solved! Go to Solution.
Hi PSB!
You can do the column in two steps. First you want to do the distinct count group by brand, then you can expand the result.
In the advanced editor, it should look like this:
#"Grouped Rows" = Table.Group(#"Changed Type", {"Brand"}, {{"Count", each Table.RowCount(Table.Distinct(_)), Int64.Type}, {"All", each _, type table [Brand=nullable text, Type=nullable text, Store=nullable text]}}),
#"Removed Columns" = Table.RemoveColumns(#"Grouped Rows",{"Brand"}),
#"Expanded All" = Table.ExpandTableColumn(#"Removed Columns", "All", {"Brand", "Type", "Store"}, {"Brand", "Type", "Store"})"All.Type", "All.Store"})
Cheers!
Hi PSB!
You can do the column in two steps. First you want to do the distinct count group by brand, then you can expand the result.
In the advanced editor, it should look like this:
#"Grouped Rows" = Table.Group(#"Changed Type", {"Brand"}, {{"Count", each Table.RowCount(Table.Distinct(_)), Int64.Type}, {"All", each _, type table [Brand=nullable text, Type=nullable text, Store=nullable text]}}),
#"Removed Columns" = Table.RemoveColumns(#"Grouped Rows",{"Brand"}),
#"Expanded All" = Table.ExpandTableColumn(#"Removed Columns", "All", {"Brand", "Type", "Store"}, {"Brand", "Type", "Store"})"All.Type", "All.Store"})
Cheers!
@amitchandak Could you please help resolving this either by DAX or Power Query?
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 41 | |
| 37 | |
| 34 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 64 | |
| 58 | |
| 31 | |
| 25 | |
| 25 |