cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

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
Community Champion
Community Champion

@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
Community Champion
Community Champion

@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
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors