Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello all forum gurus!
Very new to Power BI and I need your help! I have a formula in Excel that calculates the Overall Performance OEE for a machine using the weighted average of the column Standard Rate. I need to have the DAX code to be able to do the same thing for a report I am writing for supervisors. The excel formula is as follows: =((SUM(D:D)/(SUM(G:G))/(SUMPRODUCT(D:D,F:F)/SUM(D:D)))) The spreadsheet is below (hopefully) for reference. Thanks in advance for the help!!!
OEE1
Solved! Go to Solution.
@Anonymous,
I think it its looking for * sign try if doesn't work check the link out:
WA OEEPerf = ((SUM('BusinessView Ignition_RunData'[Quantity_Actual])/(SUM('BusinessView Ignition_RunData'[RunTime])))
/(SUMX('BusinessView Ignition_RunData','BusinessView Ignition_RunData'[Quality_Actua]*'BusinessView Ignition_RunData'[StandardRate])/(SUM(UrTableName[Quality_Actual])))
Regards
Abduvali
Hi @Anonymous,
It's almost the same but instead of the actual range you have to provide the Table and the Column names there is a similar post with a solution provided check it out:
Hope this helps if not let me know.
Regards
Abduvali
Abduvali - First, Thanks so much for your quick reply!!!
Trying your formula and I am getting the squiggly red lines under the second portion after the / symbol Highlighted in red.
WA OEEPerf = ((SUM('BusinessView Ignition_RunData'[Quantity_Actual])/(SUM('BusinessView Ignition_RunData'[RunTime])))
/(SUMX('BusinessView Ignition_RunData','BusinessView Ignition_RunData'[Quality_Actua]),'BusinessView Ignition_RunData'[StandardRate])/(SUM(UrTableName[Quality_Actual])))
Any wisdom to share there?
@Anonymous,
I think it its looking for * sign try if doesn't work check the link out:
WA OEEPerf = ((SUM('BusinessView Ignition_RunData'[Quantity_Actual])/(SUM('BusinessView Ignition_RunData'[RunTime])))
/(SUMX('BusinessView Ignition_RunData','BusinessView Ignition_RunData'[Quality_Actua]*'BusinessView Ignition_RunData'[StandardRate])/(SUM(UrTableName[Quality_Actual])))
Regards
Abduvali
Abduvali - Thanks so much for the answer! Got what I needed off the link and your answer combined! Or at least that is what I got to work. See below!
WA OEEPerf = ((SUM('BusinessView Ignition_RunData'[Quantity_Actual])/(SUM('BusinessView Ignition_RunData'[RunTime])))
/(SUMX('BusinessView Ignition_RunData',[Quantity_Actual]*[StandardRate]/(SUM([Quantity_Actual])))))
Thanks again!
@Anonymous
You are welcome =D
I fixed the last Urtablename as well - still have squiggly lines....
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
73 | |
71 | |
55 | |
37 | |
32 |
User | Count |
---|---|
71 | |
65 | |
60 | |
50 | |
45 |