Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
HI, I am still learning BI and need your help on the below:
First problem is the total for the avg column does not average properly (have tried, sumx and avgx)
Second problem, is my KGS container utlization % and CBM Container utilization% - the averages for the rows calcuate correctly but the total avg does not calcuate the average properly. This time both both KGS container utlization and CBM container utlization are using measures per below:
Hi @Anonymous ,
You could custom your total values like the following DAX with ISINSCOPE() function:
Measure =
IF (
ISINSCOPE ( 'Table'[KGS] ),
[Avg KGS per HBL],
AVERAGEX ( ALLSELECTED ( 'Table' ), [Avg KGS per HBL] )
)
HI V-achen, I tried your formula and the total for the average column is still wrong
HI Amit,
Thanks for your help but the total is still not correct. See notes below:
@Anonymous ,
Try like
AverageX(summarize(Table,Table[Origin],"_1",[Avg KGS per HBL]),[_1])
User | Count |
---|---|
116 | |
73 | |
58 | |
49 | |
48 |
User | Count |
---|---|
171 | |
122 | |
60 | |
59 | |
56 |