Forum Discussion
Question about Tooltips
- 5 years ago
Hi Anonymous ,
Please check if this is what you want:
WorkItem of MaxCycleTime = VAR MaxCycleTime = MAXX ( FILTER ( ALLSELECTED ( 'Table' ), 'Table'[WeekNum] = MAX ( 'Table'[WeekNum] ) ), [Cycle Time] ) VAR t = FILTER ( 'Table', 'Table'[Cycle Time] = MaxCycleTime ) RETURN CONCATENATEX ( t, [WorkItem], ", " )Best regards
Icey
If this post helps, then consider Accepting it as the solution to help other members find it faster.
Hi Anonymous ,
But in your data, the max Cycle Time of work items is "33". Why do you want to show "22"? Are there any rules?
Best regards
Icey
If this post helps, then consider Accepting it as the solution to help other members find it faster.
- Anonymous5 years agoNot applicable
i want to display ID for different values (for max,min, mediana).
I know how found min/max/mediana values, but i can't know how found ID for thsse values, i think about:
var a = MAX(...)
var b = LOOKUPVALUE(
items[Work Item Id],items[TT],a)return b
- Icey5 years agoCommunity Support
Hi Anonymous ,
Please check if this is what you want:
WorkItem of MaxCycleTime = VAR MaxCycleTime = MAXX ( FILTER ( ALLSELECTED ( 'Table' ), 'Table'[WeekNum] = MAX ( 'Table'[WeekNum] ) ), [Cycle Time] ) VAR t = FILTER ( 'Table', 'Table'[Cycle Time] = MaxCycleTime ) RETURN CONCATENATEX ( t, [WorkItem], ", " )Best regards
Icey
If this post helps, then consider Accepting it as the solution to help other members find it faster.