Converts a binary number to octal.
Syntax
binary_number: The number you want to convert into octal. It can have a maximum of 10 digits (10 bits), with no digits other than 0 and 1. Eg., 1111
Remarks
When the result value not does have the specified num_of_digits, zeroes are added to the left of the result value.
Examples
|
Formula |
Result |
|
=BIN2OCT(A2) |
7777777263 |
|
=BIN2OCT(A3;5) |
00052 |
|
=BIN2OCT(1111) |
17 |
Possible Errors
|
Errors |
Meaning |
|
#N/A! |
|
|
#NAME! |
|
|
#VALUE! |
|
|
#REF! |
|
|
#NUM! |
|
Similar Functions