Forum Discussion
Averages not showing properly
I have this measure :-
how do i get my pbi measuire to match 145.75388 avg instead of 145.788
- Anonymous2 years ago
Hi reemadsouza ,
I create a table as you mentioned.
Then I create a new table and here is the DAX code.
Table 2 = SUMMARIZE( 'Table', 'Table'[ID], "TotalCount", SUM('Table'[Count]) )So you can calculate what you want.
Average = AVERAGE('Table 2'[TotalCount])Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
3 Replies
- ahadkarimi
Solution Specialist
Hi reemadsouza, give this measure a try, and if you encounter any issues, let me know.
Corrected Avg = VAR TotalTimeInMinutes = SUMX( FILTER( 'Ticket Times', NOT(ISBLANK('Ticket Times'[Trip Time (s)])) ), 'Ticket Times'[Trip Time (s)] / 60 ) VAR NonBlankTicketCount = CALCULATE( DISTINCTCOUNT('Ticket Lines'[Ticket Number]), FILTER('Ticket Times', NOT(ISBLANK('Ticket Times'[Trip Time (s)]))) ) RETURN DIVIDE(TotalTimeInMinutes, NonBlankTicketCount)Did I answer your question? If so, please mark my post as the solution! ✔️
Your Kudos are much appreciated! Proud to be a Solution Supplier! - AnonymousNot applicable
Hi reemadsouza ,
I create a table as you mentioned.
Then I create a new table and here is the DAX code.
Table 2 = SUMMARIZE( 'Table', 'Table'[ID], "TotalCount", SUM('Table'[Count]) )So you can calculate what you want.
Average = AVERAGE('Table 2'[TotalCount])Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- vivek31
Resolver II
Hii, reemadsouza
you can try this,
first sum of count
total count = SUM('Table (3)'[count])second avg the total count,
avg = AVERAGEX(VALUES('Table (3)'[id]),[total count])