I typed =8^1/3 and I get 2.6666 instead of 2. Why? However if I type 2^3 I
get 8. Thanks
From HELP (operator precedence):
Operator precedence
If you combine several operators in a single formula, Excel performs the
operations in the order shown in the following table. If a formula contains
operators with the same precedence— for example, if a formula contains both a
multiplication and division operator— Excel evaluates the operators from left
to right.
Operator Description
: (colon)
(single space)
, (comma)
Reference operators
– Negation (as in –1)
% Percent
^ Exponentiation
* and / Multiplication and division
+ and – Addition and subtraction
& Connects two strings of text (concatenation)
= < > <= >= <> Comparison
Since you don't have parenthesis, Excel, as per its documentation, evaluates:
8^1
then
/ 3
If you want the cube root, you need
=8^(1/3)
--ron