Forum Discussion

cool_333's avatar
cool_333
Frequent Visitor
3 years ago
Solved

DAX help

Hi I need help with dax , output should be as per last 2 columns Compund Inflation & Quaterly Inflation using dax, please help.

MonthQuarterInflationCompounded InflationQuarterly Inflation
01/01/2016Q4 2015-0.00599.50%0.00%
01/02/2016Q4 20150.00299.70% 
01/03/2016Q4 20150.003100.00% 
01/04/2016Q1 20160.002100.20%0.60%
01/05/2016Q1 20160.002100.40% 
01/06/2016Q1 20160.002100.60% 
01/07/2016Q2 2016-0.001100.50%0.50%
01/08/2016Q2 20160.003100.80% 
01/09/2016Q2 20160.003101.10% 
01/10/2016Q3 20160.001101.20%0.70%
01/11/2016Q3 20160.002101.41% 
01/12/2016Q3 20160.0039101.80% 
  • Please try these measure expressions. Format them as a percentage. Replace T2 with your actual table name.

     

    Compound =
    VAR maxdate =
        MAX ( T2[Month] )
    RETURN
        1
            + CALCULATE ( SUM ( T2[Inflation] ), ALL ( T2 ), T2[Month] <= maxdate )
    
    Compound Quarter =
    VAR maxdate =
        MAX ( T2[Month] )
    RETURN
        1
            + CALCULATE (
                SUM ( T2[Inflation] ),
                ALL ( T2 ),
                VALUES ( T2[Quarter] ),
                T2[Month] <= maxdate
            )

     

    Pat

3 Replies

  • ppm1's avatar
    ppm1
    Icon for Solution Sage rankSolution Sage

    Please try these measure expressions. Format them as a percentage. Replace T2 with your actual table name.

     

    Compound =
    VAR maxdate =
        MAX ( T2[Month] )
    RETURN
        1
            + CALCULATE ( SUM ( T2[Inflation] ), ALL ( T2 ), T2[Month] <= maxdate )
    
    Compound Quarter =
    VAR maxdate =
        MAX ( T2[Month] )
    RETURN
        1
            + CALCULATE (
                SUM ( T2[Inflation] ),
                ALL ( T2 ),
                VALUES ( T2[Quarter] ),
                T2[Month] <= maxdate
            )

     

    Pat

  • cool_333 ,

    The information you have provided is not making the problem clear to me. Can you please explain with an example.

    Appreciate your Kudos.

    • cool_333's avatar
      cool_333
      Frequent Visitor

      Ok so I need dax formulas to acheive  Compounded infation and quaterly inflation , right now it is calculated in excel. So what is the dax formula to acheive 99.50%, 99.70%, 100.00%,100.20% and Quaterly inflation percentage 0.00%, 0.60% and so on? The data we get is the dates, quaters and inflation and we shpould be able to calculate compound inflation and quaterly inflation using dax.

       

      MonthQuarterInflationCompounded InflationQuarterly Inflation
      01/01/2016Q4 2015-0.00599.50%0.00%
      01/02/2016Q4 20150.00299.70% 
      01/03/2016Q4 20150.003100.00% 
      01/04/2016Q1 20160.002100.20%0.60%