Forum Discussion
Proday83
2 years agoFrequent Visitor
Calculate Total Availability per Line Weekly
Hello everyone, I have a new challenge ahead of me...right now in excel we have daily imput of issues on Line1 and Line2 (line column below). I need to present Total Availability on a Weekly base...
- 2 years ago
if you need the sum of minimum,
then change planned production time measure to :
sumx (
values ( date ) ,
calculate (
min ( failure_rates_data[planned production time]),
failure_rates_data[line] = "Line1"
)
)
Ashish_Mathur
2 years agoSuper User
Hi,
Try this measure
Measure = averagex(values(Calendar[Date]),[Total availability Daily Line1])
Hope this helps.