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 chart does not cummulate

Hi Power BI Community!

I want to show a cumulative chart after what delivery time span all deliveries had reached the customers.

Did not cumulate.PNG

At first the chart looks fine but the line must always go up because it should add the numbers. So the fram of 10-15 must be bigger than 5-10 and so on.

Here is my calculation:

On Axis:
Delivery time frame =
var _diff = datediff([PO Date] , [delivered on],DAY)
return
Switch ( True() ,
_diff <= 2, " 0-2" ,
_diff <= 5, " 2-5" ,
_diff <= 10, "5-10" ,
_diff <= 15, "10-15" ,
_diff <= 30, "15-30" ,
"more than 30"
)


On values:

Cumulative PO to delivery =
CALCULATE([Total PO],
FILTER(ALLSELECTED(TrackET),
TrackET[Delivery time frame]<= MAX(TrackET[Delivery time frame])))


Total PO is just 

Total PO = SUM(TrackET[PO to delivered on])+0
PO to delivered on = Delivered on date - PO Date
 
Thank you for your time!
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , I think this because of sorting issue. I am assuming you have also created a sort column as I can see 10-15 at the correct position

 

do this on sort column

Cumulative PO to delivery =
CALCULATE([Total PO],
FILTER(ALLSELECTED(TrackET),
TrackET[Delivery time frame sort]<= MAX(TrackET[Delivery time frame sort])))

 

where sort would be like

Delivery time frame sort =
var _diff = datediff([PO Date] , [delivered on],DAY)
return
Switch ( True() ,
_diff <= 2, 1 ,
_diff <= 5, 2 ,
_diff <= 10, 3 ,
_diff <= 15, 4 ,
_diff <= 30, 5,
6
)

 

what is sort column - https://www.youtube.com/watch?v=KK1zu4MBb-c

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@Anonymous , I think this because of sorting issue. I am assuming you have also created a sort column as I can see 10-15 at the correct position

 

do this on sort column

Cumulative PO to delivery =
CALCULATE([Total PO],
FILTER(ALLSELECTED(TrackET),
TrackET[Delivery time frame sort]<= MAX(TrackET[Delivery time frame sort])))

 

where sort would be like

Delivery time frame sort =
var _diff = datediff([PO Date] , [delivered on],DAY)
return
Switch ( True() ,
_diff <= 2, 1 ,
_diff <= 5, 2 ,
_diff <= 10, 3 ,
_diff <= 15, 4 ,
_diff <= 30, 5,
6
)

 

what is sort column - https://www.youtube.com/watch?v=KK1zu4MBb-c

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.