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:   Index TIME ColumnF Duration ColumnX 1 30/07/2012 00:0...
  • Anonymous's avatar
    Anonymous
    7 years ago

    See if this helps:

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