Skip to main content
Version: Streamsheets 3.0

HEX.TO.OCT

Converts a hexadecimal number to octal.

Syntax

=HEX.TO.OCT(Number, [Places])

Arguments

NameTypeDescription
NumberNumberThe hexadecimal number to convert.
Places (optional)NumberThe number of characters to use for returned value. If value has less characters then it is padded with leading zeros.

Return

TypeDescription
Number or ErrorThe octal number or a #NUM! error if given number is not a valid hexadecimal number. The #VALUE! error is returned if specified places is not numeric or negative.

Examples

FormulaResultComment
=HEX.TO.OCT("F")
17converts hexadecimal F to octal
=HEX.TO.OCT("F", 4)
0017converts hexadecimal F to octal with 4 characters