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
Jos13
Helper III
Helper III

Sum Distinct Values

Hi Team,

 

I have the following data.

Jos13_0-1608044595556.png

I want to create a measure that calculates Customer A's sale as 100 when user selects Jan 1 on slicer and 220 if user selects date range between 1st and 2nd Jan.

I tried taking the sum of averages, but it didn't work.

Please help me on this.

 

 

Regards,

Jos 

1 ACCEPTED SOLUTION
nandukrishnavs
Super User
Super User

@Jos13 

 

Try the below DAX measure.

 

Measure1 =
VAR _x =
    SUMMARIZE ( 'Table', 'Table'[Date], 'Table'[Customer], 'Table'[Sale] )
VAR _sum =
    SUMX ( _x, [Sale] )
RETURN
    _sum

 

nandukrishnavs_0-1608045589644.png

 

nandukrishnavs_1-1608045622075.png

 




Regards,
Nandu Krishna

Did I answer your question? Mark my post as a solution!
Appreciate with a kudos 👍

Proud to be a Super User!


Regards,
Nandu Krishna

View solution in original post

3 REPLIES 3
Syndicate_Admin
Administrator
Administrator

that solution worked for me, it's very good, and it's the equivalence of "DISTINCT" in SQL

nandukrishnavs
Super User
Super User

@Jos13 

 

Try the below DAX measure.

 

Measure1 =
VAR _x =
    SUMMARIZE ( 'Table', 'Table'[Date], 'Table'[Customer], 'Table'[Sale] )
VAR _sum =
    SUMX ( _x, [Sale] )
RETURN
    _sum

 

nandukrishnavs_0-1608045589644.png

 

nandukrishnavs_1-1608045622075.png

 




Regards,
Nandu Krishna

Did I answer your question? Mark my post as a solution!
Appreciate with a kudos 👍

Proud to be a Super User!


Regards,
Nandu Krishna

Thank you @nandukrishnavs 

Much appreciated.

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.