The Excel DEC2OCT Function

Related Function:
Oct2Dec Function

Function Description

Hexadecimal (base 16), decimal (base 10), octal (base 8), and binary (base 2) are the most commonly used numeral systems in engineering and computing. Therefore, Excel has provided functions to convert numeric values to and from each of these systems.

The Excel Dec2Oct function converts a decimal number into an Octal (Base 8) number.

The syntax of the function is:

DEC2OCT( number, [places] )

Where the function arguments are as follows:

number - The decimal number that is to be converted to octal.
[places] -

An optional argument, which specifies the number of characters that you want the returned octal number to have.

If this is greater than the minimum, the octal number will be padded out using leading zeros.

If [places] is omitted, the returned octal uses the minimum number of places.

  +   Display Octal Summary:

Octal

The Octal (Base 8) Numeral System uses the digits 0-7.

The following table shows the first 16 octal values, along with the equivalent decimal values:

Octal 1 2 3 4 5 6 7 10 11 12 13 14 15 16 17 20
Decimal 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

For further information on the octal numeral system, see the Wikipedia Octal Page

Dec2Oct Function Examples

The following spreadsheets show five examples of the Excel Dec2Oct function.

 Formulas:
  A
1 =DEC2OCT( 8 )
2 =DEC2OCT( 18 )
3 =DEC2OCT( 8, 10 )
4 =DEC2OCT( -8 )
5 =DEC2OCT( 237 )
 Results:
  A B
1 10   Result is   1*8 + 0
2 22   Result is   2*8 + 2
3 0000000010   Result is   1*8 + 0
4 7777777770   Result is   -8^9 + 7*8^8 + 7*8^7 + ... + 7*8 + 0
5 355   Result is   3*8^2 + 5*8 + 5

Note that, in the above example spreadsheet, the negative octal number in cell A4 is represented by two's complement notation.


Further details and examples of the Excel Dec2Oct function are provided on the Microsoft Office website.


Dec2Oct Function Errors

If you get an error from the Excel Dec2Oct function this is likely to be one of the following:

Common Errors
#NUM! -

Occurs if either:

  • The supplied number argument is < -536,870,912 or is > 536,870,911;
  • The resulting octal number requires more places than is specified by the supplied [places] argument;
  • The supplied [places] argument is < 0 or > 10.
#VALUE! - Occurs if either the supplied number argument or the supplied [places] argument is non-numeric.