Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,556,691
Community Members
 
Community Events
184
Community Groups

Issue Aged between 7days and 21 days

Edited

Hi i am new to eazybi and trying to get open issues aged between 7 and 21 days and issues should be of Issue type ‘Service Request’ and ‘Incident’ so i created a calculated member under issue type

Issue Type Filtered -
Aggregate(
Except(
[Issue Type].[Issue Type].Members,
{ [Issue Type].[Bug],
[Issue Type].[Change],
[Issue Type].[Create a new user],
[Issue Type].[Problem],
[Issue Type].[Service Request with Approvals],
[Issue Type].[Task]}
))

Then trying to include in below calculated measure but it give no data to display as soon as i add condition

NonZero(Count(
Filter(
Descendants([Issue].CurrentHierarchyMember,[Issue].[Issue]),
(
(
[Measures].[Open issues] > 0
AND
DateDiffDays(
[Measures].[Issue created date],
now()
) > 8
AND
DateDiffDays([Measures].[Issue created date],Now()
) < 22
AND
[Issue Type].DefaultMember IS ([Issue Type].[Issue Type Filter]))))))

 

Please let me know where i am going wrong

1 answer

0 votes
Gerda Grantiņa
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Apr 28, 2023

Hi @mahesh j ,

First, you can create an aggregate with only those issue types you want to have in your report using this formula:

Aggregate(
   { [Issue Type].[Service Request],
   [Issue Type].[Incident]}
)

 

Then you need to adjust your formula to this, use a tuple to filter your unresolved issues:

NonZero(
Count(
Filter(
Descendants([Issue].CurrentHierarchyMember,[Issue].[Issue]),
([Measures].[Issues created],
[Resolution].[(unresolved)],
[Issue Type].[Service Request & Incident])>0
AND
DateDiffDays([Measures].[Issue created date],now()) > 8
AND
DateDiffDays([Measures].[Issue created date],Now()) < 22
)
)
)


But you can also use Age interval from eazyBI, specify your intervals and use this dimension in the report; here is a documentation page on how to create this type of report. And add in Pages dimensions you want to filter by: https://docs.eazybi.com/eazybi/learn-more/learn-eazybi-through-sample-reports/samples-jira-issues/unresolved-issues-by-age-interval-and-priority

best,
Gerda // support@eazybi.com

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events