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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register 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