Forum Discussion

BlastS's avatar
BlastS
Helper I
7 years ago
Solved

Calculate/SumAll Duration in specific intervals

I have been working with a litle of dax function but still i am strunglig to get this exact thing which is:

 

I have as columns:

 

IndexTIMEColumnFDurationColumnX
130/07/2012 00:01:10   
230/07/2012 00:01:200100
330/07/2012 00:01:300100
430/07/2012 00:01:400100.2
530/07/2012 00:01:500100.2
630/07/2012 00:02:000100.2
730/08/2012 00:02:101100
830/07/2012 00:02:200100
930/07/2012 00:02:300100.2
1030/07/2012 00:02:400100.2
1130/07/2012 00:02:501100
1230/07/2012 00:03:000100

 

The Output Should be = 50 (30 + 20)   in format like dd:HH:mm:SS ( 00 00:50:00)

 

What i want to do is to sum all the time duration when columnX is 0.2 (how can i sum each individually ) ?

 

How can i achieve this on powerbi ? 

  • Anonymous's avatar
    Anonymous
    7 years ago

    See if this helps:

    Measure = 
    CALCULATE(
        SUM(Table1[Duration]),
        Table1[ColumnX]=.20
    )

5 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    See if this helps:

    Measure = 
    CALCULATE(
        SUM(Table1[Duration]),
        Table1[ColumnX]=.20
    )

    • BlastS's avatar
      BlastS
      Helper I

      Hi, Anonymous

       

      That helps a litle but its not that i am exactly looking for. After that how you would convert to datetime?

      • Anonymous's avatar
        Anonymous
        Not applicable

        Sorry, dont follow.  Could you possibly put what your expected output would be?