Created Vs Resolve chart with JQL

Hi,

I want to generate created Vs Resolve chart with the following query
category = “ART” AND (component = component1 or (component is Empty AND assignee in (user1, user2, user3))) AND issuetype = Bug

Thanks,
Prasad

Any Update on this ?

Hi Prasad,

In this case, you could first create a new calculated member in “Assignee” dimension with the following code:

Aggregate({
	[Assignee].[User1],
	[Assignee].[User2],
	[Assignee].[User3]
})

Then, you could create a new calculated member in “Measures” dimension:

 NonZero(
  Count(
    Filter(
      Descendants([Issue].CurrentHierarchyMember,[Issue].[Issue]),
      (
        [Project].[Component].[Component1],
        [Measures].[Issues created]
      )>0
      OR
      (
        [Project].[Component].[(none)],
        [Assignee].[Calculated member],
        [Measures].[Issues created]
      )>0
    )
  )
)

Finally, you could use “Issue” dimension in rows, “Project.category” dimension and “Issue type” dimension in page filters and select your new calculated measure from “Measures” dimension.

Best regards,
Martins / eazyBI team

I have tried with your answer, I see issue count for only one project as below

how we can add component by name instead ? same component will be there across multiple projects.

how to show, created count vs resolve out of this.

Thanks for your support!

Still looking help on this…

Hi,

What is the code you tried for your calculated measure so far?

Kindly,

I did the following steps,

  1. created calculated member in assignee dimension

  2. create new measure as follows

     NonZero(
       Count(
         Filter(
           Descendants([Issue].CurrentHierarchyMember,[Issue].[Issue]),
           (
             [Project].[Component].[Firmware],
             [Measures].[Issues created]
           )>0
           OR
           (
             [Project].[Component].[(none)],        
             [Assignee].[Team],
             [Measures].[Issues created]
           )>0
         )
       )
     )
    

then it showing as follows

Hi,

Please also share the code you used to create a calculated member “Team” in ‘Assignee’ dimension.

Br,

Hi,

Please try using “no component” instead of “none” in that code.

 NonZero(
   Count(
     Filter(
       Descendants([Issue].CurrentHierarchyMember,[Issue].[Issue]),
       (
         [Project].[Component].[Firmware],
         [Measures].[Issues created]
       )>0
       OR
       (
         [Project].[Component].[(no component)],        
         [Assignee].[Team],
         [Measures].[Issues created]
       )>0
     )
   )
 )

Br,

Aggregate({
[Assignee].[user1],
[Assignee].[user2],

})

user1 and user2 is user login id, is it correct or i have to use user full name?

tried with above code also but i don’t see any difference

Try using calculated member with user Full names.

Aggregate({
[Assignee].[Full Name1],
[Assignee].[Full Name2]
})

And there shouldn’t be a coma after the last member (in the code).

Br,

yes, i tried that too but no luck.

JQL query fyi: (category in (“category1”, “category2”) OR project in (SAIN)) AND type in (Bug) AND (component = Firmware OR (component is EMPTY AND assignee in (user1, user2, user3)))

Please provide the exported report definition to support@eazybi.com
https://docs.eazybi.com/eazybi/analyze-and-visualize/create-reports#Createreports-Exportandimportreportdefinitions

Kindly,

I have sent the email as you requested

Hi,

I can confirm we received the email and will try to answer it very soon.

Martins / eazyBI support