Hello,
I wish to return an integer which is the number of JIRA issues which have not been estimated. But this code below only returns the "Original Hours Estimate" which is set to 0. I require 0 and all items which are NULL. When a JIRA issue is created the "Original Hours Estimate" seems to be NULL by default.
How can I change this EazyBI calculated member code below to include NULL?
Count(
Filter(
Descendants(
[Issue].CurrentMember, [Issue].[Issue]),
[Measures].[Original estimated hours] = 0
)
)
Daniel.
Hi Daniel,
In case you want to count issues where "original estimated hours" is 0 or blank please try this code:
Count ( Filter( Descendants([Issue].CurrentMember, [Issue].[Issue]), [Measures].[Issues created]>0 AND ( [Measures].[Original estimated hours] = 0 OR IsEmpty([Measures].[Original estimated hours]) ) ) )
Please contact support@eazybi.com if you have further questions regarding this!
Kind regards,
Martins Vanags / eazyBI
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.