Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
sujitjena
Resolver I
Resolver I

Numeric Range Slicer based on aggregate data

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?

Screenshot.PNG

1 ACCEPTED SOLUTION
v-alq-msft
Community Support
Community Support

Hi, @sujitjena 

 

Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.

Cost:

b1.png

 

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.

b2.png

 

b3.png

 

Best Regards

Allan

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-alq-msft
Community Support
Community Support

Hi, @sujitjena 

 

Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.

Cost:

b1.png

 

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.

b2.png

 

b3.png

 

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?

 

amitchandak
Super User
Super User

@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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@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)

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.