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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
spatialcoder
New Member

Determining the overall progress of a project by the total progress of the tickets assigned to it.

Hi All, 

 

I have a task that requires me to be able to define the progress of a project. Below is the scenario.

 

I have a data table with a column that has Project Names in it, and for each project there can be more than one task/ticket associated to it. Each task has a progress complete column with (fake data) that ranges from 0-100. The data looks something like this:

spatialcoder_0-1701358817913.png

 

What I am seeking to do is to be able to display a total progress completion percentage for all of the tickets for each project. The percentage should total up to 100%. We have to keep in mind that the number of tasks could easily vary and isn't always the same as the screenshot shows for this sample.

 

Is there a way to do this using Dax? Id like to display this in a card as well.

 

 

1 ACCEPTED SOLUTION
Ced-Alcaraz
Regular Visitor

@spatialcoder 
Measure

Overall Progress =
var _countTick = DISTINCTCOUNT('table'[Ticket ID])
var _Sumprogress = CALCULATE(SUM('table'[Progress Complete]))
RETURN
_Sumprogress / _countTick / 100
CedAlcaraz_0-1701394123483.png

 



View solution in original post

5 REPLIES 5
Ashish_Mathur
Super User
Super User

Hi,

Share data in a format that can be pasted in an MS Excel file and show the expected result.


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

The solution below assisted me in the ask. 

 

I will do so in my next post for sure.

Ced-Alcaraz
Regular Visitor

@spatialcoder 
Measure

Overall Progress =
var _countTick = DISTINCTCOUNT('table'[Ticket ID])
var _Sumprogress = CALCULATE(SUM('table'[Progress Complete]))
RETURN
_Sumprogress / _countTick / 100
CedAlcaraz_0-1701394123483.png

 



This did help alot. I was stuck in the process of sorting the position where this should go. 

 

Ths only other thing I do have as a question is if there is a way to control the percentages it reports? 

 

Right now I have a total reading 0.xx % is there something in the UI to configure that will give me somewthing like 85.0 % instead of 0.85 %?

@spatialcoder 
Yes, click on your measure then go to measure tools. See highlighted.

CedAlcaraz_0-1701738013706.png

 

Helpful resources

Announcements
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!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.