March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Let say
Number of milk cans sold by the company in the past four years:
2018 = 350
2019 = 450
2020 = 500
2021 = 650
Calculate the company's average annual growth rate.
So, if the present value is 650, the past value is 350 and the number of years is 4, you get:
Growth rate after 2018: (450 - 350) / 350 x 100 = 28.57%
Growth rate after 2019: (500 - 450) / 450 x 100 = 11.11%
Growth rate after 2020: (650 - 500) / 500 x 100 = 30%
Average growth rate over time = (28.57% + 11.11% + 30%) / 3 = 23.22% per year
Im struggling to get this in dax query .
Please Suggest a method to get Average growth rate over time
Solved! Go to Solution.
Hi,
The answer should be -7.18%. You may download the PBI file from here.
Hope this helps.
@vivek_rana , using a separate date or year table
//Only year vs Year, not a level below
This Year = CALCULATE(sum('Table'[Qty]),filter(ALL('Date'),'Date'[Year]=max('Date'[Year])))
Last Year = CALCULATE(sum('Table'[Qty]),filter(ALL('Date'),'Date'[Year]=max('Date'[Year])-1))
diff = [This Year]-[Last Year ]
diff % = divide([This Year]-[Last Year ],[Last Year ])
Now create Avg diff %
Avg diff % = AverageX(values('Date'[Year]), [diff %])
Hi @amitchandak
How can we do it at Year -month level. I tried replacing Year with Yearmonth field from calender table..but seems like its not working... Can you please suggest here.
What result are you expecting? Please show that clearly.
@Ashish_Mathur .- I have this Output right now, with month over month percentage difference calculated.
Date(Month/Year) | Amount | MOM Percentage Difference | |
May 2022 | 7468 | -80% | |
April 2022 | 36522 | -38% | |
March 2022 | 58872 | 190% | |
Feb 2022 | 20301 | -54% | |
Jan 2022 | 43971 | -55% | |
Dec 2021 | 96699 |
I am trying to show Average of MOM Percentage Difference in a CARD.
so I think output should be (-80+(-38)+190+(-54)+(-55))/5 = -7.40.
Please correct me if i am wrong.
Sharing Calculation for MOM Percentage Difference :
Hi,
The answer should be -7.18%. You may download the PBI file from here.
Hope this helps.
Hi, I have a request to calculate the average growth rate for the last 5 years, the last 7 years, and so on. I have calculated the average growth for all years but am struggling to do this new request in the Dax query.
Hi,
Share some data, explain the question and show the expected result.
Thank you for your quick response. I have a data set that has data from 1995 to 2022, and I have calculated the average growth rate from 1995 to 2022. I now need to calculate the average growth rate for the last 5 years, the last 7 years, etc. See the below example.
FY | Description | Value | Growth Rate |
2010 | Sales | $ 85,063.54 |
|
2011 | Sales | $ 86,500.00 | 1.7% |
2012 | Sales | $ 83,200.00 | -3.8% |
2013 | Sales | $ 88,250.00 | 6.1% |
2014 | Sales | $ 89,425.00 | 1.3% |
2015 | Sales | $ 90,120.00 | 0.8% |
2016 | Sales | $ 91,250.00 | 1.3% |
2017 | Sales | $ 95,500.00 | 4.7% |
2018 | Sales | $ 96,100.00 | 0.6% |
2019 | Sales | $ 97,280.00 | 1.2% |
2020 | Sales | $ 95,250.00 | -2.1% |
2021 | Sales | $ 100,150.00 | 5.1% |
2022 | Sales | $ 120,250.00 | 20.1% |
Average Growth Rate from 2010 to 2022 | 3.08% | ||
Average Growth Rate from 2018 to 2022 (Last 5 Years) | 5.0% | ||
Average Growth Rate from 2016 to 2022 (Last 7 Years) | 4.4% |
I have calculated the average growth from 2010 to 2022, which is 3.08%, but I'm having trouble figuring out the 5.0% growth rate during the previous five years. I created a DAX formula, but it did calculate the average of 5 years for all years, but still, it was wrong. Any help would be appreciated.
Thank you Ashish . That worked.
You are welcome.
Hello I am having the same problem as well. Can you upload the file again so that I can check the dax? Thank you
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
134 | |
91 | |
90 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
72 | |
68 |