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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
tbobolz
Resolver I
Resolver I

Help with average of time calculations

Hi All, I have been struggling with creating an average time in a MAtrix for some time now. In my raw data I first created a lengh of stay for a patient. So my new raw date field column subtracting a discharge date from a admit date which are in  Date/Time format. The end result does return the correct time in HH:MM. When I place this filed into my matrix, it does correctly provide a sum, but I can not figue out how to get it to return an average.

 

I have tried different formula and formatting with no luck. The quick calc only has "earliest, latest and counts.

 

Any suggestion would be greatlt apprecaited

 

Thanks

Terry

 

3 ACCEPTED SOLUTIONS

@tbobolz

The AVERAGE in DAX is only support a numeric type. To get an expected out, you can follow

 

Capture.PNG

 

average time = TIME(INT(AVERAGE('Table'[elapsed seconds])/3600),INT(MOD(AVERAGE('Table'[elapsed seconds]),3600)/60),0)

Capture.PNG

View solution in original post

Thanks, I have not worked with DateDiff before and learnt something knew today. This seems pretty straight forward yet I am getting the below error. Seems obvious my start date should always be less than my end date, but with 1.5 m rows I guess it is possible to have an error. I'll have to check our software and see if it will allow a mistake such as this. If it does happen, I would think it would still calculate all the proper rows. But is this not the case.

 

Thanks again for your reply, much appreciated!

 

Terry

 

pic 3.jpg

View solution in original post

If you feel that you won't be able to clean the data at the source or transform it upon load, you can always use IF logic to prevent the error:

 

Hours in the ED =
IF (
    'ED Cycle Time Data'[ER Arrival DateTime]
        > 'ED Cycle Time Data'[ER Departure DateTime],
    DATEDIFF ( [...depart...], [...arrival...], HOUR ),
    DATEDIFF ( [...arrival...], [...depart...], HOUR )
)

View solution in original post

6 REPLIES 6
Phil_Seamark
Employee
Employee

Hi @tbobolz,

 

Can you please post a small sample of data to help us build something.  

 

Cheers,

 

Phil


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Sure, thanks for taking a look at this.

 

The below picture displays the fields utilized. The calculation of "Hours in the ED" is calculating fine in the data here.

 

pic 1.jpg

 

However, I am not sure how to present it in an average of "Hours in the ED" in the Matrix. I have tried other claculation and measure with no success.

pic 2.jpg

 

Thanks for the assistance.

 

Terry

 

 

@tbobolz

The AVERAGE in DAX is only support a numeric type. To get an expected out, you can follow

 

Capture.PNG

 

average time = TIME(INT(AVERAGE('Table'[elapsed seconds])/3600),INT(MOD(AVERAGE('Table'[elapsed seconds]),3600)/60),0)

Capture.PNG

Thanks, I have not worked with DateDiff before and learnt something knew today. This seems pretty straight forward yet I am getting the below error. Seems obvious my start date should always be less than my end date, but with 1.5 m rows I guess it is possible to have an error. I'll have to check our software and see if it will allow a mistake such as this. If it does happen, I would think it would still calculate all the proper rows. But is this not the case.

 

Thanks again for your reply, much appreciated!

 

Terry

 

pic 3.jpg

If you feel that you won't be able to clean the data at the source or transform it upon load, you can always use IF logic to prevent the error:

 

Hours in the ED =
IF (
    'ED Cycle Time Data'[ER Arrival DateTime]
        > 'ED Cycle Time Data'[ER Departure DateTime],
    DATEDIFF ( [...depart...], [...arrival...], HOUR ),
    DATEDIFF ( [...arrival...], [...depart...], HOUR )
)

Perfect! I get caught up in learning DAX and need to step back and think more dynamically, I should have easily figured that out.

 

Your assistance is much appreciated!

 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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