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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Anonymous
Not applicable

Make a measure ignore a slicer selections

Hi,

 

I have a created measure that I need to update so that it ignores one of my page's slicer selections:

 

Here is my existing measure:

Utilization OV Benchmark =
DIVIDE (
    CALCULATE (
        SUM ( 'Per 1000 Helper'[Claims] ), 'Per 1000 Helper'[FlagOffice] = "Y", 'Per 1000 Helper'[Benchmark Helper] = "BM" ),
    CALCULATE (
        SUM ( MemberMonths[TotalMembers] ), MemberMonths[Benchmark Helper] = "BM" )
             )
* 1000
 
I want the above measure to ignore a page slicer that is populated with a field from another table:  It is populated with EmployerGroups[GroupName]
 
Here is a photo of it:
Capture222.PNG
 
Is there a way to update the measure so that it completely ignores my slicer selection?
 
 
 
Thank you,
Andrew
 
 
1 ACCEPTED SOLUTION
selimovd
Super User
Super User

Hey @Anonymous ,

 

yes, you can ignore the slicer with the ALL function. Just add it to the calculate function:

Utilization OV Benchmark =
DIVIDE(
    CALCULATE(
        SUM( 'Per 1000 Helper'[Claims] ),
        'Per 1000 Helper'[FlagOffice] = "Y",
        'Per 1000 Helper'[Benchmark Helper] = "BM",
        ALL( EmployerGroups[GroupName] )
    ),
    CALCULATE(
        SUM( MemberMonths[TotalMembers] ),
        MemberMonths[Benchmark Helper] = "BM",
        ALL( EmployerGroups[GroupName] )
    )
) * 1000

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
 
Best regards
Denis
 

View solution in original post

1 REPLY 1
selimovd
Super User
Super User

Hey @Anonymous ,

 

yes, you can ignore the slicer with the ALL function. Just add it to the calculate function:

Utilization OV Benchmark =
DIVIDE(
    CALCULATE(
        SUM( 'Per 1000 Helper'[Claims] ),
        'Per 1000 Helper'[FlagOffice] = "Y",
        'Per 1000 Helper'[Benchmark Helper] = "BM",
        ALL( EmployerGroups[GroupName] )
    ),
    CALCULATE(
        SUM( MemberMonths[TotalMembers] ),
        MemberMonths[Benchmark Helper] = "BM",
        ALL( EmployerGroups[GroupName] )
    )
) * 1000

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
 
Best regards
Denis
 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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
Top Kudoed Authors