Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Issue Aged between 7days and 21 days

mahesh j April 25, 2023 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.
April 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
atlassian, jira cloud certification, managing jira projects, jira project administration, jira cloud exam, atlassian certification, agile project management, jira workflows, jira permissions, jira training, jira cloud skills, atlassian learning

Become a Certified Jira Service Project Expert 🦸🏻‍♂️

Validate your expertise in managing Jira Service Projects for Cloud. Master configuration, optimize workflows, and manage users seamlessly. Earn global 🗺️ recognition and advance your career as a trusted Jira Service management expert.

Get Certified! ✍️
AUG Leaders

Atlassian Community Events