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
djones
Frequent Visitor

Help with DAX - sum of distinct values grouped by another column(s).

Hi all,

I'm fairly new to Power BI and could really use some help. I'm trying to sum the distinct values in one column, grouped by two other columns - one is static and the other would ideally be dynamic. The dynamic column would be a date range (bin) if possible.  Here's an example of some dummy date:

column1column2column3
A101/1/2019
A101/1/2019
A151/1/2019
A151/2/2019
A151/2/2019
B2012/31/2018
B201/1/2019
B201/1/2019
B301/1/2019
B301/1/2019
B301/1/2019
B301/2/2019
B301/2/2019

 

Ideal results - if they're grouping by day:

column1column2column3
A251/1/2019
A151/2/2019
B2012/31/2018
B501/1/2019
B301/2/2019

If grouped by year:

column1column2column3
A252019
B202018
B502019

I would like to have the date range along the X-Axis and allow them to drill down from year, month, day (or something like that), so it'd be cool if the calculations updated automatically.

Thanks!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

HI @djones ,

You can use following measure formula to achieve your requirement, it will summary distinct sum of C2 based on current date and group.

D_S =
CALCULATE (
    SUMX ( VALUES ( T2[C2] ), [C2] ),
    VALUES ( T2[C1] ),
    VALUES ( T2[C3] )
)

66.gif

Regards,

Xiaoxin Sheng

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

HI @djones ,

You can use following measure formula to achieve your requirement, it will summary distinct sum of C2 based on current date and group.

D_S =
CALCULATE (
    SUMX ( VALUES ( T2[C2] ), [C2] ),
    VALUES ( T2[C1] ),
    VALUES ( T2[C3] )
)

66.gif

Regards,

Xiaoxin Sheng

Hi @Anonymous , thanks for this! It works on a row by row basis, but the total doesn't add up correctly. How can we get the total to display the "correct" amount? i.e. 95 (25+20+50)

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