The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

EazyBi. How to hide some issueTypes?

NewByatl
Contributor
October 3, 2023

How to create measures like “Show all issuetypes in table, but not Stories”
In JQL it looks like: issueType NOT IN (“Story”)

I wanna hide some tasks with this kind of issueType

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Martins Vanags_eazyBI
Atlassian Partner
October 3, 2023

Hi @NewByatl 

 

Try creating new calculated measure using this formula with Aggregate and Except functions to count Issues created from all issue types execpt stories.

 

Aggregate(

Except(

[Issue Type].[Issue Type].Members,

{

[Issue Type].[Story]

}),

[Measures].[Issues created]

)

 

Martins / eazyBI support

NewByatl
Contributor
October 3, 2023

Nice, thx!