Forum Discussion
Samoe
2 years agoAdvocate I
Durations between different status
Hi all, I think I am stuck somewhere in my head, I think this should actually be easy to solve... I have an excel sheet (example with random numbers here) which is used to track the leadtime. I hav...
- Anonymous2 years ago
Hi Samoe
You can create folloing measure
Measure = VAR nextstepdate = MAXX ( FILTER ( ALLSELECTED ( 'Table' ), [No.lot] IN VALUES ( 'Table'[No.lot] ) && [Statut No] = MAX ( 'Table'[Statut No] ) + 1 ), [Date] ) RETURN IF ( NOT ( ISBLANK ( nextstepdate ) ), DATEDIFF ( MAX ( 'Table'[Date] ), nextstepdate, DAY ), DATEDIFF ( MINX ( FILTER ( ALLSELECTED ( 'Table' ), [No.lot] IN VALUES ( 'Table'[No.lot] ) ), [Date] ), MAX ( 'Table'[Date] ), DAY ) )Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
2 years agoNot applicable
Hi Samoe
You can create folloing measure
Measure =
VAR nextstepdate =
MAXX (
FILTER (
ALLSELECTED ( 'Table' ),
[No.lot]
IN VALUES ( 'Table'[No.lot] )
&& [Statut No]
= MAX ( 'Table'[Statut No] ) + 1
),
[Date]
)
RETURN
IF (
NOT ( ISBLANK ( nextstepdate ) ),
DATEDIFF ( MAX ( 'Table'[Date] ), nextstepdate, DAY ),
DATEDIFF (
MINX (
FILTER ( ALLSELECTED ( 'Table' ), [No.lot] IN VALUES ( 'Table'[No.lot] ) ),
[Date]
),
MAX ( 'Table'[Date] ),
DAY
)
)
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
DAIKAYA
2 years agoFrequent Visitor
Hello ,
May I know how did u attach the Pbix here?