Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Total amount per day

I have a table that contains the columns;

Date

TimeItTookToCreateThePart

 

My form currently is counting the amount of entries per day.  Is it possible to add all the time up for each day, so i have a total time for the parts.

 

I then intend to divide these numbers into the "Day working mins" value so i can get the percent that the machine is being used during working hours.

 

Thanks in advance.

 

  • Anonymous ,

     

    You may try the custom column below.

    Time.Hour([Column1])*60 + Time.Minute([Column1]) + Time.Second([Column1])/60

5 Replies

  • Anonymous Add another column for minutes and then use that in the visual

     

    TimeInMinutes = MINUTE( Table[TimeItTookToCreateThePart)
    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi Parry,

      The option you have suggested only takes the minutes out of the data.

      eg If the data was 01:01:30 it would only be viewed as 1 Minute

       

      Is it possible to convert data eg hh:mm:ss 01:01:30 into 61.5 minutes ?

       

      Regards