Forum Discussion
pang22
Helper III
2 years agoWrite formula to calculate difference
Hi,
I have below table visual.
Which AOP Budget (US$K) is not summarized.
And AOP Committed Amount (US$K) is summarized.
How to write the formula to calcuate the difference?
(e.g. 294 - 83 = 211)
(e.g. 549 - 26 = 523)
3 Replies
- AnonymousNot applicable
Hi,
You can achieve this using the custom column.
Go to Transform Data -> Add Column -> Custom Column
Hope this helps - ryan_mayu
Super User
it looks like a table visual.
if AOP budget is not summarzied, then is it a measure? how did you display that column?
pls try below DAX to see if this works
sum(AOP budget)-sum(AOP Committed Amount (US$K) )
- AnonymousNot applicable