I’m looking for a measure about WHEN an ISSUE transitioned from UNASSIGNED to having an ASSIGNEE (doesn’t matter who the assignee is).
I’m doing a bar/gantt chart with the following data:
Issue created date (predefined measure)
[Issue].CurrentHierarchyMember.get(‘Created at’) - DRAFT to TO DO Date (Defined measure)
** ([Transition].[Draft => To Do],[Measures].[Transition to status last date])**
IN PROGRESS Date (Defined measure)
([Transition].[To Do => In Progress],[Measures].[Transition to status last date])
DONE Date (Defined measure)
([Transition].[In Progress => Done],[Measures].[Transition to status last date])
I want to replace the DRAFT to TO DO with the measure I’m looking for.
If you’d like to return the first date issue got assigned to anyone, you may consider using the below Tuple function (also explained here in our documentation Page - TimestampToDate)
TimestampToDate(
(
[Measures].[Transition to first timestamp],
[Transition Field].[Assignee]
)
)
It is odd, the timestamp date measure works for some, but in other it looks like it doesn’t work as it doesn’t provide a date, and the issues were assigned to someone.
I can’t figure out why it doesn’t work for all the issues though. Any ideas?