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

SUMX Distinct and GroupBy

Hi I have a table with Month, Week and number of records. What I would like to do is Sum(Distinct(Records)) groupby MonthNo, WeekNo.

 

I have a join with another table using MonthNo and WeekNo. So far I used below Dax formula to calculate distinct records

 

RecordsMeasure = MAXX(DISTINCT(DB[Records]), MAX(DB[Records]))
 
Next I have another measure to sum the distinct records
SumRecords = SUMX(DISTINCT(DB[WeekNo]), DB[RecordsMeasure])
 
The issue with the above is that I could either use MonthNo or WeekNo and for each I get different end result
 
Expected result = 10556
 
Result when MonthNo used = 9999
Result when MonthNo used = 10060
 
I would like to use GroupBy so I can use both MonthNo and WeekNo and appreciate if anyone can help with this.
 
Thanks
 
1 ACCEPTED SOLUTION

Hi @Anonymous ,

 

The correct result should be 10085. There could be two solutions. The basic idea is including the MonthNo and WeekNo at the same time. 

Measure 2 =
SUMX ( ALL ( DB[MonthNo], DB[WeekNo] ), CALCULATE ( MAX ( DB[Records] ) ) )
Measure 3 =
SUMX (
    SUMMARIZE ( DB, DB[MonthNo], DB[WeekNo], "maxRecords", MAX ( DB[Records] ) ),
    [maxRecords]
)

SUMX-Distinct-and-Group-By

 

Best Regards,

Community Support Team _ Dale
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

4 REPLIES 4
v-jiascu-msft
Employee
Employee

Hi @Anonymous ,

 

Actually, this formula "RecordsMeasure = MAXX(DISTINCT(DB[Records]), MAX(DB[Records]))" equals the one below.

 

RecordsMeasure = MAX(DB[Records])

What are the values of DB[Records]? Can we calculate a Max value?

 

Generally, the results base on MonthNo or WeekNo are different. Do you mean you'd like to SUM them base on MonthNo and WeekNo?

Can you share a sample, please? Please mask the sensitive parts first.

 

 

Best Regards,

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

@v-jiascu-msft 

 

Thanks for your reply.

 

Yes I need to calculate the sum distinct by Monthno and weekno. Please see attached data set. Its basically MonthNo, WeekNo and actual values.

 

Please see link to data file on OneDrive with DB[Records] values

 

https://1drv.ms/x/s!AtGoFMN86r67ll-mnGmniDknC2zp

 

 

 

Hi @Anonymous ,

 

The correct result should be 10085. There could be two solutions. The basic idea is including the MonthNo and WeekNo at the same time. 

Measure 2 =
SUMX ( ALL ( DB[MonthNo], DB[WeekNo] ), CALCULATE ( MAX ( DB[Records] ) ) )
Measure 3 =
SUMX (
    SUMMARIZE ( DB, DB[MonthNo], DB[WeekNo], "maxRecords", MAX ( DB[Records] ) ),
    [maxRecords]
)

SUMX-Distinct-and-Group-By

 

Best Regards,

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Thanks @v-jiascu-msft  got the desired result now.

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.