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

Cumulative Sales Calculation

Hi Expert

 

I am trying to work out the cumulative sales divided by the Cumulative Complaints in Power BI, i can work out the formula in Excel fine (see image)

Capture.PNG

 

 

 

The problem arises in Power BI, I am pretty sure i have the correct DAX.

 

Main Formula.

 

Cumulative Complaint Rate = IF(DIVIDE([Cumulative Complaints],[Cumulative Sales],0)<>0,DIVIDE([Cumulative Complaints],[Cumulative Sales],0)
)

Cumulative Sales and Complaint are calculated as follows:

Cumulative Complaints = CALCULATE([PMSComplaintsMN],
    FILTER(ALL(PMS_FINANCIAL_PDS[FISCAL_MON_START_DT]),
    PMS_FINANCIAL_PDS[FISCAL_MON_START_DT] <= MAX(PMS_FINANCIAL_PDS[FISCAL_MON_START_DT])
))

 

Cumulative Sales = CALCULATE([Sales],
    FILTER(ALL(PMS_FINANCIAL_PDS[FISCAL_MON_START_DT]),
    PMS_FINANCIAL_PDS[FISCAL_MON_START_DT] <= MAX(PMS_FINANCIAL_PDS[FISCAL_MON_START_DT])
))

The main formula just gives the in month complaints/in month sale as a percentage.

 

see attached PBIX (file is missing sales data - you can make this up). rest of the test data is here.

https://www.dropbox.com/s/qedzqlc8eltztqz/Test.pbix?dl=0

 

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

PS. I have already sum'd sales and complaints using a seperate Measure.

 

View solution in original post

v-xuding-msft
Community Support
Community Support

Hi @Anonymous 

By my test, you didn’t calculate the cumulative sales and complaints. You  still  need other formulas. The following are the formulas you can have a try.

 

1.Cumulative Complaints =

  CALCULATE (

    SUM ( Table1[Complaints] ),

    FILTER (

        ALL ( Table1[Month Start] ),

        Table1[Month Start] <= MAX ( Table1[Month Start])

    )

)

2.Cumulative sales =

   CALCULATE (

    SUM ( Table1[Sales] ),

    FILTER (

        ALL ( Table1[Month Start] ),

        Table1[Month Start] <= MAX ( Table1[Month Start])

    )

)

3.Cumulative Complaint Rate =

IF (

    DIVIDE ( [Cumulative Complaints], [Cumulative sales], 0 ) <> 0,

    DIVIDE ( [Cumulative Complaints], [Cumulative sales], 0 )

)

divide.PNG

 

 

Best Regards,

Xue Ding

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Best Regards,
Xue Ding
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

3 REPLIES 3
v-xuding-msft
Community Support
Community Support

Hi @Anonymous 

By my test, you didn’t calculate the cumulative sales and complaints. You  still  need other formulas. The following are the formulas you can have a try.

 

1.Cumulative Complaints =

  CALCULATE (

    SUM ( Table1[Complaints] ),

    FILTER (

        ALL ( Table1[Month Start] ),

        Table1[Month Start] <= MAX ( Table1[Month Start])

    )

)

2.Cumulative sales =

   CALCULATE (

    SUM ( Table1[Sales] ),

    FILTER (

        ALL ( Table1[Month Start] ),

        Table1[Month Start] <= MAX ( Table1[Month Start])

    )

)

3.Cumulative Complaint Rate =

IF (

    DIVIDE ( [Cumulative Complaints], [Cumulative sales], 0 ) <> 0,

    DIVIDE ( [Cumulative Complaints], [Cumulative sales], 0 )

)

divide.PNG

 

 

Best Regards,

Xue Ding

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Xue.. many thanks for the feedback. that works just fine.

Anonymous
Not applicable

PS. I have already sum'd sales and complaints using a seperate Measure.

 

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.