Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hi Power BI Community,
I'm struggling in calculating/displaying the Total Sum at the bottom of a matrix for my Hourly Effective Production measure.
Yet you can see that the total for Number of operators is quite good calculated.
Here is a screenshot of the matrix :
Here is the DAX formula for Hourly Effective Production measure :
The expected total for Hourly Effective Production would be 1136 (329 + 405 + 401 + 1)
About the Hourly Objective Production Total, I would need to calculate an average of this.
Do you know how I could handle these cases, please?
Thank you for your help.
BR
Vincent.
Solved! Go to Solution.
Thanks for your suggestions.
This formula works perfectly !
New Hourly Effective Production1 = SUMX ( VALUES ( Table[Hour] ), [Hourly Effective Production] )
Best regards,
Vincent.
@Anonymous , Try a new measure like
Hourly Effective Production = sumx(values(Table[Hour]), CALCULATE(COUNT(ZOT[OT Number]),FILTER(ZOT,ZOT[Confirmation Date] = TODAY() && NOT(ISBLANK(ZOT[Confirmation Date])) && ZOT[Confirmation HH:00] = MAX('Capacity'[Hour]))))
Hi @amitchandak
Thank you for your suggestion, unfortunately, I still don't have a value in the total bottom line.
Is it related to the fact that there are empty values from 16:00 to 21:00 ?
BR
Vincent.
Hi, @Anonymous
Can you provide some sample data for testing?
Maybe you can try formulas as below:
New Hourly Effective Production1 =
SUMX ( VALUES ( Table[Hour] ), [Hourly Effective Production] )
or
New Hpourly Effective Production2 =
SUMX (
SUMMARIZE (
Table1,
Table1[Hour],
Table1[Bumber of operators],
"Hourly Effective Production",
CALCULATE (
COUNT ( ZOT[OT Number] ),
FILTER (
ZOT,
ZOT[Confirmation Date] = TODAY ()
&& NOT ( ISBLANK ( ZOT[Confirmation Date] ) )
&& ZOT[Confirmation HH:00] = MAX ( 'Capacity'[Hour] )
)
) + 0
),
[Hourly Effective Production]
)
BTY,Why the Hourly Objective Production would be 684,can you explain it in more detail?
Best Regards,
Community Support Team _ Eason
Hi @v-easonf-msft ; @amitchandak
@v-easonf-msft : I haven't tested yet your suggestions, but please find the URL for downloading the pbix file as a sample.
About the 684, figures have changed since last post.
Taking in account the sample.pbix, please now consider the following table with the expected results in the Total line in the bottom :
Thank you for your support.
Best regards,
Vincent.
Thanks for your suggestions.
This formula works perfectly !
New Hourly Effective Production1 = SUMX ( VALUES ( Table[Hour] ), [Hourly Effective Production] )
Best regards,
Vincent.
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.