Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi everyone, is it possible to create a dynamic table that returns the unique values from a column based on selected slicer. I want to sprint a report to shows daily task count in a a sprint. the number of days in a sprint differs and I want to create a new table that will show a list of sprint days for a selected sprint. Right now the table I created is select the disticnt of all the sprint days respective of the sprint
Solved! Go to Solution.
Hi @Anonymous ,
Create a measure like this and apply it to visual level filter.
Measure = SWITCH(TRUE(),
MAX('Table'[Sprint])="Sprint 10"&&MAX('Table'[Sprint Day])<=3,1,
MAX('Table'[Sprint])="Sprint 11"&&MAX('Table'[Sprint Day])<=2,1,0)
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
How do I achieve that
Below is a sample data.
I want to the table to show Days: 1,2,3 when I select Sprint 10 and just 1,2 when I select Sprint 11
| Sprint Day | Sprint | Tasks | Assigned | Hours |
| 1 | Sprint 10 | Task 1 | User A | 2 |
| 1 | Sprint 10 | Task 2 | User A | 1 |
| 2 | Sprint 10 | Task 1 | User B | 2 |
| 3 | Sprint 10 | Task 3 | User C | 1 |
| 1 | Sprint 11 | Task 1 | User C | 2 |
| 2 | Sprint 11 | Task 5 | User A | 1 |
@Anonymous
Create slicer using the table[Sprint] field (or create a dimension/lookup table with unique table[sprint] vales and join via a relationship to your fact table via the common field) and a table as you have shown. When you select a value(s) in the slicer, the table will be filtered accordingly.
Proud to be a Super User!
Paul on Linkedin.
Hi @Anonymous ,
Create a measure like this and apply it to visual level filter.
Measure = SWITCH(TRUE(),
MAX('Table'[Sprint])="Sprint 10"&&MAX('Table'[Sprint Day])<=3,1,
MAX('Table'[Sprint])="Sprint 11"&&MAX('Table'[Sprint Day])<=2,1,0)
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 133 | |
| 88 | |
| 85 | |
| 68 | |
| 64 |