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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
mmh
Helper I
Helper I

count of two column in stacked column chart

Hi,

I have following chart, in x axis legal id and yaxis  application id (count) 

 

Capture.PNG

but i would like those  column values in X axis and Yaxis as distinct count ,  something like histogram or group by as follows: ist column 20 application having 8 legalid , 2nd column 18 application has 6 legalid and so on.

Thanks!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @mmh ,

 

According to your description, here are my steps you can follow as a solution.

(1) This is my test data. 

vtangjiemsft_0-1668671968605.png

(2) We can create a table.

SummarizeTable = 
var _a = ADDCOLUMNS('Table',"Count",CALCULATE(COUNT('Table'[ApplicationID]),ALLEXCEPT('Table','Table'[LegalID])))
var _b = SUMMARIZE(_a,[Count],"Num",CALCULATE(DISTINCTCOUNT('Table'[LegalID]),FILTER(_a,[Count]=EARLIER([Count]))))
return _b

 (3) Then the result is as follows.

vtangjiemsft_1-1668672043284.png

 

Best Regards,

Neeko Tang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. 

View solution in original post

3 REPLIES 3
mmh
Helper I
Helper I

Hi @Anonymous 
One more requirements, in summarized table one more column need to be added as country. legal id and application id need to filter by countries. Could you please help me on this too. 

Thanks! 

mmh
Helper I
Helper I

Thanks Neeko. 

Anonymous
Not applicable

Hi @mmh ,

 

According to your description, here are my steps you can follow as a solution.

(1) This is my test data. 

vtangjiemsft_0-1668671968605.png

(2) We can create a table.

SummarizeTable = 
var _a = ADDCOLUMNS('Table',"Count",CALCULATE(COUNT('Table'[ApplicationID]),ALLEXCEPT('Table','Table'[LegalID])))
var _b = SUMMARIZE(_a,[Count],"Num",CALCULATE(DISTINCTCOUNT('Table'[LegalID]),FILTER(_a,[Count]=EARLIER([Count]))))
return _b

 (3) Then the result is as follows.

vtangjiemsft_1-1668672043284.png

 

Best Regards,

Neeko Tang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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