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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Filter values at aggregation level

Hi,

 

I have report with 3 grids displaying sum of users vs device, browser and operating system as shown below. I have to add a user slicer to this page where the devices, browser and operating system can be filtered out.

neelofarshama_0-1632329701190.png

When I add a slicer and select > 220,000 the results are wrongly displayed. I want only "Other" to be filtereed out in 1st grid.

neelofarshama_1-1632329998737.png

Required results

neelofarshama_2-1632330282282.png

 

3 REPLIES 3
Anonymous
Not applicable

Hi @Anonymous ,

 

The information you provided was not clear enough. Check if amitchandak's formula works for you. Otherwise please provided some sample data and the formula you are using.

 

Best Regards,

Jay

amitchandak
Super User
Super User

@Anonymous , You need a measure like
Switch ( True() ,

isinscope(Table[Device]), Sumx(Filter(Values(Table[Device]),[Users] >selectedvalue(Slicer[Value])),[Users]),
isinscope(Table[browser]), Sumx(Filter(Values(Table[browser]),[Users] >selectedvalue(Slicer[Value])),[Users]),
// add OTHERS
)

 

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
Anonymous
Not applicable

This formula did not work for me its giving wrong values as shown below the original one is on the top and bottom one is with applied measure.

neelofarshama_0-1632927224692.png

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors