The Excel HEX2OCT Function

Related Function:
Oct2Hex Function

Function Description

The Excel Hex2Oct function converts a Hexadecimal (Base 16) number into an Octal (Base 8) number.

The syntax of the function is:

HEX2OCT( number, [places] )

Where the function arguments are:

number - The hexadecimal 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 omitted, the returned octal uses the minimum number of places.

Note that the supplied number argument must not be more than 10 characters (40 bits) long. The most significant bit of this value denotes the sign of the number and the remaining 39 bits denote the magnitude. Negative numbers are represented using two's complement notation.

It should also be noted that, as hexadecimals use the numbers 0-9 and the characters a-f, they should be enclosed in quotation marks when they are supplied to an Excel function. (e.g. The hexadecimal 11a should be input as "11a").

  +   Display Hexadecimal and Octal Summary:

Hexadecimal

The Hexadecimal (Base 16) Numeral System uses the digits 0-9 and the characters a-f.

The following table shows the first 32 hexadecimal values, along with the equivalent decimal values:

Hexadecimal 1 2 3 4 5 6 7 8 9 a b c d e f 10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f 20
Decimal 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32

For further information on the hexadecimal numeral system, see the Wikipedia Hexadecimal Page


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

Excel Hex2Oct Function Examples

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

 Formulas:
  A
1 =HEX2OCT( "A" )
2 =HEX2OCT( "000000000F" )
3 =HEX2OCT( "8", 10 )
4 =HEX2OCT( "FFFFFFFFF8" )
5 =HEX2OCT( "1F3" )
 Results:
  A
1 12
2 17
3 0000000010
4 7777777770
5 763

Note that, in the above example spreadsheet, the negative hexadecimal and octal numbers in cell A4 are represented by two's complement notation.


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


Hex2Oct Function Errors

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

Common Errors
#NUM! -

Occurs if either:

  • The supplied number argument is not recognised as a hexadecimal number or contains more than 10 characters;
  • The resulting octal number requires more places than is specified by the supplied [places] argument;
  • The supplied [places] argument < 0 or > 10.
#VALUE! - Occurs if the supplied [places] argument is non-numeric.