Forum Discussion
Anonymous
6 years agoNot applicable
Subtracting Two Values
Hello all, I am new to Power BI so I apoligize if this is an easy answer. I need to subtract the values in one column from the values in another. I have written it as (SUM(HR[Annual Rat...
- 6 years ago
Anonymous try this
SUM(HR[Annual Rate])-SUM('BY VP'[Annual Rate - Duplications])Would appreciate Kudos 🙂 if my solution helped.
v-lili6-msft
6 years agoCommunity Support
hi Anonymous
From the scrennshot, there is a small mistake that a syntax error in the formula, just add ")" after HR[Annual Rate]
Please try this as parry2k provided:
Measure = SUM(HR[Annual Rate])-SUM('BY VP'[Annual Rate - Duplications])
Regards,
Lin
parry2k
6 years agoSuper User
v-lili6-msft just curious how your solution is different than what I provided???