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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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

@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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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