how to calculate multiple roots

  • Thread starter Bernard Liengme
  • Start date
C

Chip Pearson

The Nth root of a number is equal to the number raised to the (1/N)
power. E.g., 27^(1/3) = 3. In a formula, you can use

=27^(1/3)

or in code use

X = 27^(1/3)

Cordially,
Chip Pearson
Microsoft MVP
Excel Product Group
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)
 
Top