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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
ipmh97
New Member

Adding Grand total to column chart calculating distinct count

Hi,

 

I am ttrying to do up a bar chart for countries across years with the distinct count of IDs as the value. I am also trying to add a grand total column at the side of each chart, looking something like this:

Screenshot 2023-09-19 at 5.51.04 PM.png

How do i go about doing this?

I have attached a very simplified version fo my data, bearing in mind the total should work and be accurate when factoring in slicers and filters.

https://drive.google.com/file/d/1OXN8FfogWTv88xxNeWauqvHcoOShXZOb/view?usp=share_link

 

Thank you for the help!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @ipmh97 ,

 

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

(1) My test data is the same as yours.

(2) We can create a table and measures. 

Table 2 = var a=SUMMARIZE(Sheet1,[Year])
var b={"Total"}
var c=SUMMARIZE(Sheet1,[Country])
return GENERATEALL(UNION(a,b),c)
Measure 4 = var a=SUMMARIZE(FILTER('Table 2',[Year]<>"Total"),'Table 2'[Year])
return IF(SELECTEDVALUE('Table 2'[Year])<>"Total",CALCULATE(DISTINCTCOUNT(Sheet1[ID]),FILTER('Sheet1',[Year] in a&&[Country] in VALUES('Table 2'[Country]))),0)
Measure 5 = var a=SUMMARIZE(FILTER(ALLSELECTED('Table 2'),[Year]<>"Total"),[Year],[Country],"Sum",[Measure 4])
return IF(SELECTEDVALUE('Table 2'[Year])="Total",SUMX(FILTER(a,[Country] in VALUES('Table 2'[Country])),[Sum]),SUMX(FILTER(a,[Year] in VALUES('Table 2'[Year])&&[Country] in VALUES('Table 2'[Country])),[Sum]))

(3) Then the result is as follows.

vtangjiemsft_0-1695288792536.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

1 REPLY 1
Anonymous
Not applicable

Hi @ipmh97 ,

 

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

(1) My test data is the same as yours.

(2) We can create a table and measures. 

Table 2 = var a=SUMMARIZE(Sheet1,[Year])
var b={"Total"}
var c=SUMMARIZE(Sheet1,[Country])
return GENERATEALL(UNION(a,b),c)
Measure 4 = var a=SUMMARIZE(FILTER('Table 2',[Year]<>"Total"),'Table 2'[Year])
return IF(SELECTEDVALUE('Table 2'[Year])<>"Total",CALCULATE(DISTINCTCOUNT(Sheet1[ID]),FILTER('Sheet1',[Year] in a&&[Country] in VALUES('Table 2'[Country]))),0)
Measure 5 = var a=SUMMARIZE(FILTER(ALLSELECTED('Table 2'),[Year]<>"Total"),[Year],[Country],"Sum",[Measure 4])
return IF(SELECTEDVALUE('Table 2'[Year])="Total",SUMX(FILTER(a,[Country] in VALUES('Table 2'[Country])),[Sum]),SUMX(FILTER(a,[Year] in VALUES('Table 2'[Year])&&[Country] in VALUES('Table 2'[Country])),[Sum]))

(3) Then the result is as follows.

vtangjiemsft_0-1695288792536.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
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors