The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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