Forum Discussion

csaethre19's avatar
csaethre19
Helper II
3 years ago
Solved

Calculated Columns Affected By Slicer Filters

I have two calculated columns: CalculatedColumn_FailureCount = CALCULATE(     COUNTROWS('public failure'),     ALLEXCEPT('public failure', 'public failure'[Failure Mode], 'public failure'[Exper...
  • NaveenGandhi's avatar
    NaveenGandhi
    3 years ago

    csaethre19 

    I understood you wanted the overall for a day, Just do the below changes to the measures.

    TotalRuns_Test =
    CALCULATE (
    DISTINCTCOUNT ( 'Test'[Experiment Id] ),
    ALLEXCEPT ( Test, Test[Experiment Start Time] )
    )

    FailureRate_Test = [FailureCount_Test] / [TotalRuns_Test]

     

    Regards,
    Naveen