Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hello,
I am currently trying to caculate the overall yield rate in the same matrix (different stage), but when I have no ideas to write the Dax.
From this table, I want to do is multiply 97.5%*95.35%*100%*98.9%.
Can I please have some help with how I have the correct formula?
Thanks.
Solved! Go to Solution.
Hello,
One way you can consider doing this is with the following:
Measure =
VAR _FLB = Your Calculation
VAR _FCT = Your Calculation
VAR _Cycle = Your Calculation
VAR _Run = Your Calculation
RETURN
_FLB * _FCT * _Cycle * _Run
For extra validation, I would ensure each variable computes the result you expect. I'd recommend Returning each variable first before you do the full multiplication. i.e.
Measure =
VAR _FLB = Your Calculation
//VAR _FCT = Your Calculation
//VAR _Cycle = Your Calculation
//VAR _Run = Your Calculation
RETURN
//_FLB * _FCT * _Cycle * _Run
_FLB
And repeat for each variable so that you can trust you answer
Proud to be a Super User! | |
Hello,
One way you can consider doing this is with the following:
Measure =
VAR _FLB = Your Calculation
VAR _FCT = Your Calculation
VAR _Cycle = Your Calculation
VAR _Run = Your Calculation
RETURN
_FLB * _FCT * _Cycle * _Run
For extra validation, I would ensure each variable computes the result you expect. I'd recommend Returning each variable first before you do the full multiplication. i.e.
Measure =
VAR _FLB = Your Calculation
//VAR _FCT = Your Calculation
//VAR _Cycle = Your Calculation
//VAR _Run = Your Calculation
RETURN
//_FLB * _FCT * _Cycle * _Run
_FLB
And repeat for each variable so that you can trust you answer
Proud to be a Super User! | |
Thank you for your reply. However, I have a problem to appoint these variance respectively in different stage.
Ex. How can I appoint the Y/R % when stage in NR. FLB TEST.
My caculation is below.
Thanks.
Oh, I figure it out. Thank you very much!!!
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
102 | |
68 | |
46 | |
37 | |
37 |