Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I am trying to create a measure in order to apply the values to a visual in powerBI. In excel, the values would be as follows:
"Relative Value of Innovation"=avg(IN)-avg(PC,HR,MO)
Where,
IN=innovation
PC=process control
HR=human relations
MO=mission outcomes
If i were doing this formula in excel i would create a pivot table of all of the values in the data set to provide an average of each of the four values above (IN, PC, HR, MO). Within PowerBI I have already created a measure to average each of those values:
Here is the formula for the Average of AVE Org HR for reference:
The last step I am trying to make is to subtract the Average of AVE ORG Innovation by the sum of the average of the Average of AVE ORG Human Relations, Mission Outcomes, and Process Control. I have tried creating a new measure for this process, but am not as fluent in DAX to make this happen.
Below is my attempt at this formula in the new measure field in powerBI:
Should this be done as a two step process, where first i would need to create a measure to average PC, HR, and MO. Then after creating that measure, create another measure where it would subtract the Average of AVE ORG Innovation by the measure of the average of PC, HR, and MO? If so, what would both of those steps look like?
thank you for the help in advance!
Solved! Go to Solution.
This worked perfectly! Matches correctly with the historical data as well! Thank you for the help.
Hi, @DJNationals ;
I'm very happy to be able to help you, if I help you, can you mark me by the way?
Thank you !
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @DJNationals ;
Try it.
newmeasure =
[Average of innovation]
- DIVIDE (
[Average of process control] + [Average of human relations] + [Average of mission outcomes],
3
)
If not fight, can you share a simple example and your expected result with backend logic?
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This worked perfectly! Matches correctly with the historical data as well! Thank you for the help.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
111 | |
93 | |
87 | |
35 | |
35 |
User | Count |
---|---|
154 | |
102 | |
82 | |
64 | |
54 |