Skip to main content
Version: Streamsheets 3.0

OCT.TO.HEX

Converts an octal number to hexadecimal.

Syntax

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

Arguments

NameTypeDescription
NumberNumberThe octal 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 hexadecimal number or a #NUM! error if given number is not a valid octal number. The #VALUE! error is returned if specified places is not numeric or negative.

Examples

FormulaResultComment
=OCT.TO.HEX(100)
40converts octal 100 to hexadecimal
=OCT.TO.HEX(100, 4)
0040converts octal 100 to hexadecimal with 4 characters