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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Anonymous
Not applicable

How to Calculate Running Total Count of ID in %

Hello All,

I have a Excel report i have to create it in the POWER BI

IdSeverityStatusOpendateCloseddateTime to Close
26MediumClosed2/11/20215/1/202180
25MediumOpen4/2/2021  
17LowClosed5/17/20216/29/202144
27MediumOpen4/13/2021  
29MediumOpen7/8/2021  
16LowClosed5/21/20216/29/202140
18LowClosed5/24/20216/29/202137
33MediumResolved7/12/20217/12/20211
34HighResolved7/5/20218/7/202134
42MediumClosed7/15/20218/16/202133
36HighOpen6/24/2021  
38LowResolved7/9/20217/16/20218
39HighOpen7/6/2021  
44High    
45High    
46High    
47Medium    
48HighClosed   
9MediumClosed5/25/20216/23/202130
22HighClosed4/27/20215/25/202129
30MediumClosed7/8/20218/5/202129
52High    
53Medium    
54HighOpen8/11/2021  
55HighOpen8/11/2021  
24HighClosed4/14/20215/5/202122
10MediumClosed6/8/20216/29/202122
58LowOpen   
59LowOpen   
60MediumOpen   
1HighClosed10/1/2020  
32HighOpen7/12/2021  
40HighOpen7/18/2021  
3MediumClosed6/10/2021  
5HighClosed6/25/2021  
14MediumClosed6/10/20216/30/202121
12MediumClosed6/8/20216/23/202116
6MediumOpen5/23/2021  
35HighClosed6/30/20217/13/202114
7HighClosed5/25/2021  
11LowClosed5/30/20216/11/202113
13LowResolved6/9/20216/10/20212
8HighClosed5/21/20215/30/202110
49HighClosed8/2/20218/10/20219
50HighClosed8/1/20218/8/20218
51HighClosed8/1/20218/8/20218
56MediumClosed8/1/20218/8/20218
57HighClosed8/19/20218/23/20215
20MediumOpen6/21/2021  
21LowOpen5/10/20216/30/202152
23LowOpen6/30/2021  
28HighResolved7/7/20217/8/20212
37LowResolved7/13/20217/14/20212
41MediumOpen7/1/2021  
31LowClosed7/6/20217/7/20212

now i need to show the below line chart with Running Total Count of ID in % in power bi
filters on status {Closed and Resolved} and Closed date is not blank 

 

excel report.PNG

 

 

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , Try a measure like

 

Cumm = CALCULATE(count(Table[Id]),filter(allselected(Table),Table[Closed date] <=max(Table[Closed date]) && not(isblank([Closed date]))))

 

or join with date table and then try

 

Cumm = CALCULATE(count(Table[Id]),filter(allselected(Table),Table[date] <=max(Date[date])) ,not(isblank([Closed date])) )

 

To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Hello Amit,

Thanks for the approach, but it is not working as i was excepting

Power bi reportPower bi reportExcel ReportExcel Report

 

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors