A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi Tarik, growth rate percentage is generally calculated with this formula
=(Last number/first number)^(1/number of intervals)-1
Which is:
=(D35/C35)^(1/1)-1
to force a positive number, wrap that formula in an ABS function
=ABS((D35/C35)^(1/1)-1)