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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi
I have the following measure:
Solved! Go to Solution.
Hi @James314 - Use the below measure with explicitly by using filter function within calculate
Admissions =
CALCULATE(
SUM('Fact'[Attends]),
FILTER(
'Fact',
'Fact'[Admitted?] = "Admitted"
)
)
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
Hi @James314 - Use the below measure with explicitly by using filter function within calculate
Admissions =
CALCULATE(
SUM('Fact'[Attends]),
FILTER(
'Fact',
'Fact'[Admitted?] = "Admitted"
)
)
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
This is great thank you! Can I ask why this works?
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.