Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
I need to calculate a % of total, the issue is I need to exclude one field.
Solved! Go to Solution.
Based on your description, you need to modify your measure to the following
Total SLA =
CALCULATE (
COUNTX ( 'SL_Data', [SLA GOAL] ),
ALLSELECTED ( 'SL_Data'[Skill Name] )
)
Then create a new meaure
MEASURE =
CALCULATE (
[Total SLA],
'SL_Data'[Skill Name] IN { "Clinical", "Equipment", "Mechanical Room" }
)
It can work.
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Based on your description, you need to modify your measure to the following
Total SLA =
CALCULATE (
COUNTX ( 'SL_Data', [SLA GOAL] ),
ALLSELECTED ( 'SL_Data'[Skill Name] )
)
Then create a new meaure
MEASURE =
CALCULATE (
[Total SLA],
'SL_Data'[Skill Name] IN { "Clinical", "Equipment", "Mechanical Room" }
)
It can work.
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@angela_marie , if you need a total of those three , then you need use
FILTER(all('SL_Data') ,'SL_Data'[Skill Name] IN {"Clinical","Equipment","Mechanical Room"}))
Power BI How ALL Works: different ways to use- https://youtu.be/LXgzlZ38mwU
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
86 | |
79 | |
42 | |
40 | |
35 |