Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
2 years ago
Solved

Optimize performance for running totals

Dear all,

I am struggling with optimizing the performance of a measure to calculate the running totals. Currently my DAX measure looks like below, but this measure is not performing in the way I would like. I am looking for more effective ways to calculate the running totals, for example using recursive functions. Is there anyone that can help me out with an optimized version to compute the running totals in Power BI? Many measure are depending on this one where we do even more complex analyses, so having this measure optimized will have a profound effect on the overall performance of many dashboards.

 

           CALCULATE (
                [DemandQty],
                ALL ( 'Date'[Date] ),
                'Date'[Date] <= MAX ( 'Date'[Date] ) 
            )

  • Anonymous's avatar
    Anonymous
    2 years ago

    Your idea is so great Greg_Deckler 

    Hi, Anonymous 

    If you want to optimize the performance of SUMX, you can refer to the following articles:

    Optimizing callbacks in a SUMX iterator - SQLBI

     

     

     

    How to Get Your Question Answered Quickly

    If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

    Best Regards

    Jianpeng Li

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

  • Anonymous Perhaps try:

    Better RT =
      VAR _MaxDate = MAX( 'Date'[DateId] )
      VAR _Table = SUMMARIZE( ALL('BottomUp'), [DemandDateId], "_Value", SUM('BottomUp'[DemandQty]) )
      VAR _Result = SUMX( FILTER( _Table, [DemandDateId] <= _MaxDate ), [_Value] )
    RETURN
      _Result

4 Replies

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi Greg,

      Thanks for your quick response. I have tried your solutions and hereby my feedback.

       

      1. Using the ALLSELECTED was in my case slower, but also functionally it gives for me a different result. We have visuals were we show the running total as of total, but it might be that we have values in the past that we also want to included in the running total. Hence we used the ALL function

       

      2. I have created the below measures in my data model. However, after about 20 seconds I get the message that it is too memory intensive (original measure runs for about 4 seconds). BottomUp is my fact table with an inactive relationship from BottomUp[DemandDateId] --> Date[DateId]. I already have a measure with business logic called [DemandQty] that determines the 'Value' for each demand date. The BottomUp is a table with 10.000.000 records and the date table ranges from 1-1-2022 till 31-12-2030.

      DEFINE
          [Better RT] =
              VAR _MaxDate = MAX ( 'Date'[DateId] )
              VAR _Table = FILTER(ALL('BottomUp'), BottomUp[DemandDateId] <= _MaxDate)
              RETURN
                  SUMX(_Table, [DemandQty])

      EVALUATE
      SUMMARIZECOLUMNS (
          'Date'[Date],
          "Test", '_NewMeasures'[Better RT]
      )

       

      Is there something I am doing incorrectly here or other solutions that can be helpful for my use-case?

       

      Kind regards,

      Stefan

      • Anonymous's avatar
        Anonymous
        Not applicable

        Your idea is so great Greg_Deckler 

        Hi, Anonymous 

        If you want to optimize the performance of SUMX, you can refer to the following articles:

        Optimizing callbacks in a SUMX iterator - SQLBI

         

         

         

        How to Get Your Question Answered Quickly

        If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

        Best Regards

        Jianpeng Li

        If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.