The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. 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!
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
21 | |
19 | |
18 | |
18 | |
14 |
User | Count |
---|---|
36 | |
34 | |
20 | |
19 | |
15 |