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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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