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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
PSB
Helper III
Helper III

Power query help for adding conditional count column

@Greg_Deckler 

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

BrandTypeStore
AppleIphoneNYC
AppleIphoneNYC
SamsungS22NJ
SamsungS21NJ
SamsungS21

NJ

 

Result

BrandTypeStoreCount
AppleIphoneNYC1
AppleIphoneNYC1
SamsungS22NJ2
SamsungS21NJ2
SamsungS21NJ2
2 ACCEPTED SOLUTIONS
Ricardoncosta
Regular Visitor

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.

 

Ricardoncosta_0-1665248534478.png

 

Ricardoncosta_1-1665248591939.png

 

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!

View solution in original post

@PSB , DAX, You can try a new rank column

 

Column = RANKX(Data,[Brand] &[Store],,ASC,Dense)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

3 REPLIES 3
Ricardoncosta
Regular Visitor

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.

 

Ricardoncosta_0-1665248534478.png

 

Ricardoncosta_1-1665248591939.png

 

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!

PSB
Helper III
Helper III

@amitchandak  Could you please help resolving this either by DAX or Power Query?

@PSB , DAX, You can try a new rank column

 

Column = RANKX(Data,[Brand] &[Store],,ASC,Dense)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors