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
BhavyaM
Helper V
Helper V

How to create CAGR % in Row wise

Hi,

 

I have data like 

CountryDateYearQuarterSalesCAGR%

 

I need to get last 5 years CAGR value in ROW wise in a Table view

 

There is filters selection required

 

My below calculation is not giving me Row level CAGR value

CAGR = (Ending year value/ Starting year value)^(1/no.of years) -1

 

This is my formula for this

Ending year value = CALCULATE(SUM('Yearly Data'[Oil Production(MMBPD)]),FILTER('Yearly Data','Yearly Data'[Year]=Max('Yearly Data'[Year])))

 

Starting year value= CALCULATE(SUM('Yearly Data'[Oil Production(MMBPD)]),FILTER('Yearly Data','Yearly Data'[Year]=MIN('Yearly Data'[Year])))
 
No of years = MAX('Yearly Data'[Year])-MIN('Yearly Data'[Year])
 
Thanks in advance! Please help
5 REPLIES 5
amitchandak
Super User
Super User

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

Appreciate your Kudos.

Hi,

 

Below one is my expected result.

Expected result.JPG

When i apply initial provided Calculation i am getting result like below

 

My query result.JPG

 

Thanks in advance

Hi @BhavyaM ,

 

Lack of your sample data , so I can only find the part of your formula that may be the cause of the problem:

 

 

Ending year value = VAR MAXDATE = CALCULATE(Max('Yearly Data'[Year]),ALL('Yearly Data'))RETURN (CALCULATE(SUM('Yearly Data'[Oil Production(MMBPD)]),FILTER('Yearly Data','Yearly Data'[Year]=MAXDATE))

 

Starting year value= VAR MINDATE = CALCULATE(Max('Yearly Data'[Year]),ALL('Yearly Data'))RETURN CALCULATE(SUM('Yearly Data'[Oil Production(MMBPD)]),FILTER('Yearly Data','Yearly Data'[Year]=MINDATE))

 

 

In your original formula, if the max and min functions are in the same context, they will get the same result.

 

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

 

Best Regards,

Dedmon Dai

 

vanessafvg
Super User
Super User

can you share some data in text format, or what are you getting and what should you be getting, provide some examples.




If I took the time to answer your question and I came up with a solution, please mark my post as a solution and /or give kudos freely for the effort 🙂 Thank you!

Proud to be a Super User!




Above provide one is my table structure.

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.