This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi Guys,
I have some data from Jira and I am trying to group some labels and show it against the issues table with a yes no column, however its producing yes and no results, meaning I have 2 rows per issues on each group I made.
I need it to be only 1 row in which if it contains that label I want it to say yes and if doesn't I want it to say no on 1 row as shown on my ideal screenshot.
How can I accomplish this?my attempt
ideal outcome
relationship between tables
Solved! Go to Solution.
Hi @Raf_Joker ,
I am confused. What is exactly is your ideal outcome? The relationship view doesn't show how you want the data to be shown in a visual. If you want it to just show Yes per unique ISSUE_KEY, you can create a calculated column that counts the number of yes per ISSUE_KEY and if that yes is more than 0 then return Yes for all the rows of that ISSUE_KEY. Sample formula
yes/no =
VAR YesCount =
CALCULATE (
COUNTROWS ( Labels ),
Labels[Yes/No Column] = "Yes",
ALLEXCEPT ( Labels, Labels[ISSUE_KEY] )
)
RETURN
IF ( _YesCount > 0 || _YesCount <> BLANK (), "Yes", "No" )
Hi @Raf_Joker ,
I am confused. What is exactly is your ideal outcome? The relationship view doesn't show how you want the data to be shown in a visual. If you want it to just show Yes per unique ISSUE_KEY, you can create a calculated column that counts the number of yes per ISSUE_KEY and if that yes is more than 0 then return Yes for all the rows of that ISSUE_KEY. Sample formula
yes/no =
VAR YesCount =
CALCULATE (
COUNTROWS ( Labels ),
Labels[Yes/No Column] = "Yes",
ALLEXCEPT ( Labels, Labels[ISSUE_KEY] )
)
RETURN
IF ( _YesCount > 0 || _YesCount <> BLANK (), "Yes", "No" )
Thank you, yes that has helped and will give me my desired outcome.
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 28 | |
| 25 | |
| 25 | |
| 22 | |
| 13 |
| User | Count |
|---|---|
| 60 | |
| 50 | |
| 26 | |
| 20 | |
| 19 |