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.
I've 2 tables which need to be calculated with each other. Table 1, column 2 amount needs the total (SUM), which needs to subtracted with all the Yes from Table 2, column 2 text (count). I made a DAX formula but it shows a blank value in the card visual. Hope someone can help out?
DAX:
TEST sum =
CALCULATE (
SUM ( 'Table 1'[Col 2 amount] ) - COUNT ( 'Table 2'[Col 2 text] ),
FILTER ( 'Table 2', 'Table 2'[Col 2 text] = "Yes" )
)
SETUP:
Table 1
Col 1 | Col 2 amount
1 | 20
2 | 30
3 | 40
4 | 25
5 | 20
Table 2
Col 1 | Col 2 text
1 | Yes
2 | Yes
3 | No
4 | No
5 | No
Solved! Go to Solution.
@Anonymous , Try like
TEST sum =
CALCULATE (
SUM ( 'Table 1'[Col 2 amount] )) - CALCULATE (COUNT ( 'Table 2'[Col 2 text] ),
FILTER ( 'Table 2', 'Table 2'[Col 2 text] = "Yes" )
)
you need to have a common dimension to display measures together
Bridge Table: https://www.youtube.com/watch?v=Bkf35Roman8&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=19
@Anonymous , Try like
TEST sum =
CALCULATE (
SUM ( 'Table 1'[Col 2 amount] )) - CALCULATE (COUNT ( 'Table 2'[Col 2 text] ),
FILTER ( 'Table 2', 'Table 2'[Col 2 text] = "Yes" )
)
you need to have a common dimension to display measures together
Bridge Table: https://www.youtube.com/watch?v=Bkf35Roman8&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=19
Thank you, this helped
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.
User | Count |
---|---|
12 | |
11 | |
10 | |
9 | |
8 |