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
Hello!
I need help what DAX formula to use if I will get the value of the Cost Recog field with the same value as with the actual Cost. Please see table below.
What I need is the Cost Recog value and this is the same value as with Actual Cost
| Project | Actual Cost | Cost Recog |
| Project 1 | $2,534,248.23 | $2,534,248.23 |
| Project 2 | $1,633,649.00 | $1,633,649.00 |
Thank you.
Solved! Go to Solution.
@juhoneyighot Maybe:
Measure =
VAR __Actual = SUM('Table'[Actual Cost'])
VAR __CostRecog = SUM('Table'[Cost Recog])
VAR __Result = IF( __Actual = __CostRecog, __CostRecog, BLANK() )
RETURN
__Result
@juhoneyighot Maybe:
Measure =
VAR __Actual = SUM('Table'[Actual Cost'])
VAR __CostRecog = SUM('Table'[Cost Recog])
VAR __Result = IF( __Actual = __CostRecog, __CostRecog, BLANK() )
RETURN
__Result
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 58 | |
| 45 | |
| 41 | |
| 21 | |
| 18 |