Forum Discussion
Andrea78m
8 years agoFrequent Visitor
average per hour
hallo, I'd get for each operator the average throught the hours so I put: DDD = AVERAGEX ( SUMMARIZE ( DMGLR04L; DMGLR04L[CODICE_OPERATORE]; DMGLR04L[ORA_]; ...
v-ljerr-msft
8 years agoMicrosoft Employee
Hi Andrea78m,
Could you try the formula below to see if it works? :smileyhappy:
DDD =
AVERAGEX (
SUMMARIZE (
DMGLR04L;
DMGLR04L[CODICE_OPERATORE];
DMGLR04L[ORA_];
"ZZZZ"; CALCULATE ( SUM ( DMGLR04L[NUMERO_COLLI_INTERI_NON_PALLET] ) )
);
[ZZZZ]
)
Regards
- Andrea78m8 years agoFrequent Visitor
unfortunately the result is the same.
I tried also to count ORA_:
DDD =
AVERAGEX (
SUMMARIZE (
DMGLR04L;
DMGLR04L[CODICE_OPERATORE];
DMGLR04L[ORA_];
"ZZZZ"; count ( DMGLR04L[ORA_] )
);
[ZZZZ]
)but it gives me an incorrect value.
It gives me 21.33 instead 3??