The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I have this measure :-
how do i get my pbi measuire to match 145.75388 avg instead of 145.788
Solved! Go to Solution.
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.
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])
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.
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!
User | Count |
---|---|
28 | |
11 | |
8 | |
6 | |
5 |
User | Count |
---|---|
35 | |
14 | |
12 | |
9 | |
7 |