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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 43 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |