nth root

P

phil

I'm trying to set up a formula to calculate growth rates using roots.

I need to use a root calculation where the root changes for each calculation

For example: to calculate the square root of a value in a cell you would
use the SQRT function.

But if I want to calculate the cube root, how would I do that?

Thanks!
 
A

A.W.J. Ales

Phil,

SQRT(A1) = A1^(1/2)
In the same way : A1^(1/3) ; A1^(1/4) etc


--
Regards,
Auk Ales

* Please reply to this newsgroup only *
* I will not react on unsolicited e-mails *
 
C

Chip Pearson

Phil,

The Nth root of any number is that number raised to the 1/N
power. Therefore, you can use a formula like

=A1^(1/N)


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 
B

Bernard V Liengme

Hi Phil,
The formula = A1^1/n is fine but if you like functions try =POWER(A1, 1/n)
Bernard
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

calculations with recordset columns 0
Square Root 7
how to calculate a cube root 2
Cube root 5
Excel Functions 2
Calculator, Nth root 4
How to get Nth root in Excel? 1
Cube root 1

Top