Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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:
Solved! Go to Solution.
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
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
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!