I’m trying to generate a report that spits out a predicted completion date
I built a measure that takes Open Issues * Average Resolution Days and spits out a number of days. I’d like to make this report automatic and dynamic by adding that measure to DateAddDays (Now(calculation) but it looks like the MDX only excepts an integer there. Is this true and if not is there a workaround?
–annotations.group=Predicted
Case when
([Measures].[Open issues],
[Time].CurrentHierarchy.DefaultMember) > 0
Then
DateAddDays( Now(),([Measures].[Days to resolve open issues]))
End
expecting an output of a date 21 days in the future for the latest time member but getting an integer of over 43,000
eazyBI thinks the result will be a numeric value and formats it to integer by default, giving the date as timestamp. Instead, please set the formatting to one of date formats and you should see the expected date