Forum Discussion

adityavighne's avatar
adityavighne
Continued Contributor
4 years ago
Solved

How to convert Calculate time ?

HI Team,

 

I have data with Avg. time in this format.

7.516339869
874.3815789
0
0
1
10.07894737
0
328.7763158
0
0
0
9.019607843
6.509803922
0
157.2727273

i want to convert this number in to Minutes and get average of all.

kindly help

regards,

aditya

  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi  adityavighne ,

    Here are the steps you can follow:

    1. Create calculated column.

    avg = AVERAGE('Minutes'[Minutes])
    min =
    ROUND('Minutes'[avg],2)&""&"Minute"

    2. Result:

     

    Best Regards,

    Liu Yang

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

2 Replies

  • can we assume that the integer part of your data is equivalent to days? In that case strip off the integer part and multiply the fraction part with 1440.  That will give you the minutes value.

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi  adityavighne ,

    Here are the steps you can follow:

    1. Create calculated column.

    avg = AVERAGE('Minutes'[Minutes])
    min =
    ROUND('Minutes'[avg],2)&""&"Minute"

    2. Result:

     

    Best Regards,

    Liu Yang

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly