Yes, then you would need to map “Exit date” field to “Time” dimension and skip mapping the field “fields created (1)” to time dimension.
eazyBI would let you map just one date field to “Time” dimension in the cube.
or you could leave the mapping as it is and acheve the results with custom calculations.
Try creating new calculated measure using this formula:
Sum(
Filter(
DescendantsSet([IssueKey].CurrentMember,[IssueKey].[IssueKey]),
DateInPeriod(
[Measures].[IssueKey Exit_date],
[Time].CurrenthierarchyMember
)
),
(
[Measures].[Exit days],
[Time].Currenthierarchy.Defaultmember
)
)
Martins