Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
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 for each month. I know I want to do Net Operating Income / Revenue, but how do I create the measure with the data set up this way?
Thanks!
Solved! Go to Solution.
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" )
)
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" )
)
Hey,
the easiest way to achieve what you want is to pivot your table in Power Query and create two metric colums with the value
And than the result looks like this
From here you can simply your measure, without pivoting your Metric column can can become very difficult to find the proper lines.
Hope this helps
Do you need the NOI to be in the same column as your monthly income? Or, could it be in a second column?
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 41 | |
| 37 | |
| 32 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 66 | |
| 58 | |
| 31 | |
| 25 | |
| 24 |