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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
v-tangjie-msft
Community Support
Community Support

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 @v-tangjie-msft 
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. 

v-tangjie-msft
Community Support
Community Support

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors