Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
cool_333
Frequent Visitor

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% 
1 ACCEPTED SOLUTION
ppm1
Solution Sage
Solution 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
        )

 

ppm1_0-1674921882704.png

Pat

Microsoft Employee

View solution in original post

3 REPLIES 3
ppm1
Solution Sage
Solution 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
        )

 

ppm1_0-1674921882704.png

Pat

Microsoft Employee
amitchandak
Super User
Super User

@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.

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%

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors