Forum Discussion

Keha's avatar
Keha
Frequent Visitor
9 years ago
Solved

Cumulative Measure - Set static Start Date

Dear experts,   I have run into a problem revolving around cumulative measures and I was hoping that you would be able to assist. What I am trying to achive is to display a bouncerate change over t...
  • Keha's avatar
    9 years ago

    I think I got it to work with:

     

    Test1 = IF (

        MIN ( 'DateDimension'[Date] )

            <= CALCULATE ( MAX ( 'Table'[Date] ); ALL ( 'Table' ) ); 

    CALCULATE (

        SUM('Table'[Bounces])/SUM('Table'[Sessions]);

        DATESYTD( Datedimension[Date] ) ) 

    )

     

    Thank you anyways!!