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 am trying to summarise data into a card using a filter that is a DAX measure.
In a table form, the data is correct (i am able to filter using the DAX measure, committed indicator = 1)
However, the issue comes when i am trying to summarise it in a card - i am unable to add the DAX measure as my filter 😞
Can someone help on this please? Basically I just want the sum of the card to tally with the total in the table.
Any help would be greatly appreciated - attached is the file :))
Solved! Go to Solution.
hi @tiffanyt123
try like:
Area =
CALCULATE(
SUM(TableName[Occupancy Area]),
FILTER(TableName, [Committed_Indicator]=1)
)
in case of issue, please paste the code for the Committed_Indicator measure.
hi @tiffanyt123
try like:
Area =
CALCULATE(
SUM(TableName[Occupancy Area]),
FILTER(TableName, [Committed_Indicator]=1)
)
in case of issue, please paste the code for the Committed_Indicator measure.
Thanks so much!!! that has worked for now :))
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.