Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi,
I have a report that shows aggregated FTE for a list if clients. I want the users to be able to choose a FTE range to filter clients. However, this doesnt work since the filters work on row level. I tried creating another table using summerize table concept and connect it but some how its missing something and it doesnt work. I have table name: Cost, Columns: "Client name" and "FTE".
Is this possible. Can someone help?
Solved! Go to Solution.
Hi, @sujitjena
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
Cost:
FTE Slicer(a calculated table):
FTE Slicer =
var sumtab =
SUMMARIZE(
Cost,
Cost[ClientName],
"Sum",
SUM(Cost[FTE])
)
var tab =
GENERATESERIES(
MINX(sumtab,[Sum]),
MAXX(sumtab,[Sum]),
1
)
return tab
Measure:
Visual Control =
IF(
SUM(Cost[FTE])<=MAX('FTE Slicer'[Value])&&
SUM(Cost[FTE])>=MIN('FTE Slicer'[Value]),
1,0
)
Finally you may put the measure in the visual level filter to filter the result.
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @sujitjena
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
Cost:
FTE Slicer(a calculated table):
FTE Slicer =
var sumtab =
SUMMARIZE(
Cost,
Cost[ClientName],
"Sum",
SUM(Cost[FTE])
)
var tab =
GENERATESERIES(
MINX(sumtab,[Sum]),
MAXX(sumtab,[Sum]),
1
)
return tab
Measure:
Visual Control =
IF(
SUM(Cost[FTE])<=MAX('FTE Slicer'[Value])&&
SUM(Cost[FTE])>=MIN('FTE Slicer'[Value]),
1,0
)
Finally you may put the measure in the visual level filter to filter the result.
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is great! Is there a way to make the slicer dynamic to the selected customer?
@sujitjena , If you need a slider on a measure then you need to follow the dynamic segmentation approach.
Refer if my video can help
https://www.youtube.com/watch?v=CuczXPj0N-k
or
segmentation
https://www.daxpatterns.com/dynamic-segmentation/
https://radacad.com/grouping-and-binning-step-towards-better-data-visualization
@amitchandak : Thanks for a quick reply. Bucketing can be used but the range is quite dynamic and it will change in future. What i want is to provide the users with a control to choose "between a range" in the slicer (shown in the screenshot)
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
78 | |
78 | |
57 | |
37 | |
34 |
User | Count |
---|---|
99 | |
56 | |
56 | |
46 | |
40 |