Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi
I have report with alistbar to select a team.
An indicator shows the open tasks for the team.
Each team belongs to a region.
I also want to show an indicator with the open tasks of all teams within the region of the team as selected in the listbar.
How can I do this?
@jvandyck , In this case, prefer the slicer is coming from an independent teams table( Not joined or not from teams column in the table)
Try measure like
measure =
var _region = summarize(filter(Table, Table[team]=selectedvalue(Table[team])), Table[region])
return
calculate(sum(Table[open tasks]), filter(Table, Table[region] in _region))
Hi
I have created a mock-up to explain my question. It is available in dropbox: https://www.dropbox.com/sh/ia5ub6szgaimxpo/AAAseSDuewX4xczDMDAIXOkCa?dl=0
Many thanks for your help!
I cannot get it working, so I would like to attach a mockup pbix file. How can I do that?
This is the structure....it is not parent-child in dax terminology...
| Region | Team |
| Bruxelles | BRUSSEL |
| Litigation and Admin | ADMIN |
| Litigation and Admin | LITIGATION |
| Operations | OPERATIONS |
| Vlaanderen | WILRIJK 1 |
| Vlaanderen | WILRIJK 2 |
| Vlaanderen | WILRIJK 3 |
| Vlaanderen | DRONGEN 1 |
| Vlaanderen | DRONGEN 2 |
| Vlaanderen | HASSELT |
| Vlaanderen | KORTRIJK |
| Vlaanderen | LEUVEN 1 |
| Vlaanderen | LEUVEN 2 |
| Wallonie | JAMBES |
| Wallonie | LIEGE |
| Wallonie | MONS |
So on my report, I have a listbar populated with team. An indicator shows the open tasks for the selected team.
Now I want to add a measure not only showing the open tasks for the selected team, but for all teams within the region.
So if I select Mons in the listbar, I want to show the open tasks for Mons, Liege and Jambes.
I hope this clarifies what I want to achieve....
@jvandyck , not enough info for a quick solution; but you might want to refer to this document concerning such a Parent-Child question.
| Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 5 | |
| 5 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 12 | |
| 11 | |
| 10 |