Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
reemadsouza
Frequent Visitor

Averages not showing properly

I have this measure :-

 

row context avg =
AVERAGEX(
    FILTER(
        'Ticket Times',
        NOT(ISBLANK('Ticket Times'[Trip Time (s)]))
    ),
    'Ticket Times'[Trip Time (s)] / 60
)
 and another way to write the same 
Column context avg = CALCULATE(DIVIDE([Trip Time (min)],[Ticket Count without Blanks]))
 
where 
Ticket Count without Blanks =
CALCULATE(
    DISTINCTCOUNT('Ticket Lines'[Ticket Number]),
    FILTER('Ticket Times'NOT(ISBLANK('Ticket Times'[Trip Time (s)])))
)
 
for 3 days it gives me these values 
 reemadsouza_0-1725385179736.png

 

 

 when I average in excel I get reemadsouza_1-1725385179499.png

 

  how do i get my pbi measuire to match 145.75388 avg instead of 145.788

1 ACCEPTED SOLUTION
v-yilong-msft
Community Support
Community Support

Hi @reemadsouza ,

I create a table as you mentioned.

vyilongmsft_0-1725418390046.png

Then I create a new table and here is the DAX code.

Table 2 = 
SUMMARIZE(
    'Table', 
    'Table'[ID], 
    "TotalCount", SUM('Table'[Count])
)

vyilongmsft_1-1725418757630.png

So you can calculate what you want.

Average = AVERAGE('Table 2'[TotalCount])

vyilongmsft_2-1725419116095.pngvyilongmsft_3-1725419265727.png

 

 

 

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.

View solution in original post

3 REPLIES 3
vivek31
Frequent Visitor

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])

 

vivek31_0-1725518605489.png

 

 

 

 

v-yilong-msft
Community Support
Community Support

Hi @reemadsouza ,

I create a table as you mentioned.

vyilongmsft_0-1725418390046.png

Then I create a new table and here is the DAX code.

Table 2 = 
SUMMARIZE(
    'Table', 
    'Table'[ID], 
    "TotalCount", SUM('Table'[Count])
)

vyilongmsft_1-1725418757630.png

So you can calculate what you want.

Average = AVERAGE('Table 2'[TotalCount])

vyilongmsft_2-1725419116095.pngvyilongmsft_3-1725419265727.png

 

 

 

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.

ahadkarimi
Solution Specialist
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!

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

Check out the August 2024 Power BI update to learn about new features.

August Carousel

Fabric Community Update - August 2024

Find out what's new and trending in the Fabric Community.