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
Anonymous
Not applicable

Calculating Quater Sum for 3 month Distinctcount result

I am using the Dax to get Monthly Distinctcount of IDs. Need Quaterly result where Quarter is selected it should give the sum of each month result derived from Dax meassure. When I directly giving as quarter it is taking Distinctcount of IDs of entire quarter.
expected Quarter result as 3+3+2=8 ,   but when I try getting the result as 3
Jan-3

Feb-3

Mar-2


IDs    Month
A1    Jan
A2    Jan
A2    Jan
A3    Jan
A1    Feb
A1    Feb
A3    Feb
A2    Feb
A2    Mar
A2    Mar
A1    Mar

Appreciate your kind help.Thanks!

Regards,
Naseef

1 ACCEPTED SOLUTION
ryan_mayu
Super User
Super User

@Anonymous 

you can try this

Measure = 
var TBL=SUMMARIZE('Table','Table'[Month],"count",DISTINCTCOUNT('Table'[IDs]))
RETURN sumx(TBL,[count])

1.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

1 REPLY 1
ryan_mayu
Super User
Super User

@Anonymous 

you can try this

Measure = 
var TBL=SUMMARIZE('Table','Table'[Month],"count",DISTINCTCOUNT('Table'[IDs]))
RETURN sumx(TBL,[count])

1.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




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