Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
Anonymous
Not applicable

Trend of cumulative backlog

i have a case where i have to show a cumulative backlog of appilcations. 

 

My case is: we receive applictions and  we have a due date of 30 days if the staff asks for a extention the due date will be 45 days.

 

we need to show a cummulative backlog graph of applications that are overdue (i.e >30 days if extention not  requested

> 45 days  if extention requested )

 

it should be acting accordingly with the date slicer that is comming from other table where i ahve a connection with date the column and the application received date in over main table.

 

Capture1.PNGCapture2.PNG

2 REPLIES 2
v-juanli-msft
Community Support
Community Support

Hi @Anonymous

Assume your applictions data table is like

start date received date extention request
10/1/2015 12/1/2015 no
1/1/2016 1/25/2016 no
2/1/2016 4/5/2016 yes
1/1/2017 1/5/2017 no
1/1/2017 2/25/2017 yes
1/1/2018 2/19/2018 yes
1/1/2015 10/1/2015 no
2/1/2017 3/5/2017 no
1/1/2018 2/10/2018 no
1/31/2018 3/10/2018 no


To get the count of rows which are overdue, Create measures  

days between = DATEDIFF(MAX([start date]),MAX([received date]),DAY)

count = CALCULATE(COUNTROWS(Sheet1),FILTER(Sheet1,
([extention request]="yes"&&[days between]>45)||
([extention request]="no"&&[days between]>30)))

 

 8.png

 

 

To get cummulative sum of backlog of applications that are overdue

Create measures

cumulative = SUMX(FILTER(SUMMARIZE(ALLSELECTED(Sheet1),[received date],"countrosw",
CALCULATE(COUNTROWS(Sheet1),FILTER(Sheet1,[extention request]="yes"&&[days between1]>45
||[extention request]="no"&&[days between1]>30))),
[received date]<=MAX([received date])),
[countrosw])

9.png

Best Regards

Maggie

 

 

Ashish_Mathur
Super User
Super User

Hi,

 

Share a dataset and show the expected result in a Table format.  Once the Table is ready, we can easily create an Area graph.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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