Forum Discussion
Rsanjuan
9 years agoAdvocate III
Calculation
This may be a real simple calculation, but I am having trouble gettting it. Perhaps, because it's a Monday. What I want to do is calculate the Net Operating Income as a % of Revenue fo...
- 9 years ago
You may create a measure as shown below.
Measure = DIVIDE ( CALCULATE ( SUM ( Table1[Actual] ), Table1[Metric] = "Net Operating Income" ), CALCULATE ( SUM ( Table1[Actual] ), Table1[Metric] = "Revenue" ) )
v-chuncz-msft
9 years agoCommunity Support
You may create a measure as shown below.
Measure =
DIVIDE (
CALCULATE ( SUM ( Table1[Actual] ), Table1[Metric] = "Net Operating Income" ),
CALCULATE ( SUM ( Table1[Actual] ), Table1[Metric] = "Revenue" )
)