I have 3 measures.
Measure 1, Measure 2 and Measure 3.
Measure 3 is getting calculated based on other two measure by using the formula:
Measure 3 = 1 – (Measure 1/ Measure 2)
Now I want to calculate the average of measure 3.
In power BI i am getting it as follows:
Group | Measure 1 | Measure 2 | Measure 3 |
A | 100.00% | ||
B | 64.75 | 100.00% | |
C | 4 | 40 | 90.00% |
D | 1 | 100.00% | |
E | 5 | 100.00% | |
F | 3 | 3 | 0.00% |
G | 100.00% | ||
H | 100.00% | ||
I | 1 | 5.5 | 81.80% |
J | 10 | 100.00% | |
K | 2 | 23.5 | 91.50% |
L | 10.5 | 100.00% | |
M | 36.25 | 100.00% | |
N | 100.00% | ||
O | 13 | 100.00% | |
Total | 10 | 212.5 | 95.30% |
In power BI I am getting 95.3% (1 -10/212.5) but this is not what I want...the expected output is the average of these numbers in measure 3 which should be 90.89%. I want to take the average of group efficency.
Please advise.