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
nmck86
Post Patron
Post Patron

Project Completion Analysis

Hello! I am trying to build a calculation that will give me the avg days between each component of the project process.

For example: In the below excel file I have project ID 1 and I want to konw the avg days between each project status and there are several status levels up until it is in complete. I want to be able to see all those calculations on a bar chart showing the avg. That way if one status is taking longer than others by project we will have that visibility. Also, there are some situations where the status will get flipped back to a previous status and we want to analyze that as well. 

 

Example:

Wappr 5/15/2018

Iniatiated 5/17/2018

2 days in between

Inprogress 6/1/2018

Waitingcont 6/5/2018

4 days in between

Complete 6/10/2018

26 days in between

 

sample file for project process.png

1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

Hi @nmck86,

 

You can use below measure to calculate diff between previous date and current date who has same project id.

Diff from Previous Date =
VAR currProject =
    SELECTEDVALUE ( 'Sample'[Project ID] )
VAR currDate =
    SELECTEDVALUE ( 'Sample'[Date] )
VAR previous =
    MAXX (
        FILTER ( ALL ( 'Sample' ), [Project ID] = currProject && [Date] < currDate ),
        [Date]
    )
RETURN
    IF ( previous <> BLANK (), DATEDIFF ( previous, currDate, DAY ), 0 )

19.PNG

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

1 REPLY 1
v-shex-msft
Community Support
Community Support

Hi @nmck86,

 

You can use below measure to calculate diff between previous date and current date who has same project id.

Diff from Previous Date =
VAR currProject =
    SELECTEDVALUE ( 'Sample'[Project ID] )
VAR currDate =
    SELECTEDVALUE ( 'Sample'[Date] )
VAR previous =
    MAXX (
        FILTER ( ALL ( 'Sample' ), [Project ID] = currProject && [Date] < currDate ),
        [Date]
    )
RETURN
    IF ( previous <> BLANK (), DATEDIFF ( previous, currDate, DAY ), 0 )

19.PNG

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

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.