Hello, friends
The task is to display all issues that do not have ‘not-for-qa’ label (even if there are several labels, e.g. not-for-qa and tech-debt)
If an issue has a label ‘not-for-qa’ - I should not see it in a table
What do I do:
- I create calculated member in Label dimension and placed it in Pages block
- The calculated member is:
Aggregate(
Except(
[Label].[Label].Members,
{
[Label].[not-for-qa]
}
)
)
And, the list of issues does filter, but is excludes only those issues that have the only lable 'not-for-qa’
And issues that have several labels (e.g. not-for-qa and tech-debt) are not filtered out
Any help?