Hello,
I have what I thought an easy task, but can’t quite make it out:
We have a jira custom numeric field with word count in text. It is imported in eazyBI as a measure.
Now, when I add a Time dimesion, I want to have a sum of this word count field values to be shown in the report for each month (based on Issue created date, for instance).
Here is the what I wrote so far:
Sum(
Filter(Descendants([Issue].CurrentMember,[Issue].[Issue]),
DateInPeriod(
[Measures].[Issue created date],
[Time].CurrentHierarchyMember)
),
[Measures].[Word count]
)
But for some reason it gives me the “mmm dd yyyy” in every row instead of numeric values and a sum. Any suggestions?
Here is how it looks like:
Thank you.