EazyBi. How to hide some issueTypes?

NewByatl 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

0 votes
Answer accepted
Mārtiņš Vanags
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.
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 October 3, 2023

Nice, thx!

Suggest an answer

Log in or Sign up to answer