Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
hallo,
I'd get for each operator the average throught the hours
so I put:
DDD =
AVERAGEX (
SUMMARIZE (
DMGLR04L;
DMGLR04L[CODICE_OPERATORE];
DMGLR04L[ORA_];
"ZZZZ"; SUM ( DMGLR04L[NUMERO_COLLI_INTERI_NON_PALLET] )
);
[ZZZZ]
)
but the sum is not corret
The result is 230,33, instead 205,57
where is the error?
thanks for help
Hi @Andrea78m,
Could you try the formula below to see if it works? ![]()
DDD =
AVERAGEX (
SUMMARIZE (
DMGLR04L;
DMGLR04L[CODICE_OPERATORE];
DMGLR04L[ORA_];
"ZZZZ"; CALCULATE ( SUM ( DMGLR04L[NUMERO_COLLI_INTERI_NON_PALLET] ) )
);
[ZZZZ]
)
Regards
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??
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 2 | |
| 1 |
| User | Count |
|---|---|
| 10 | |
| 9 | |
| 6 | |
| 3 | |
| 3 |