Skip to main content
Version: Streamsheets 3.0

DEC.TO.HEX

Converts a decimal number to hexadecimal.

Syntax

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

Arguments

NameTypeDescription
NumberNumberThe decimal 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 decimal number. The #VALUE! error is returned if specified places is not numeric or negative.

Examples

FormulaResultComment
=DEC.TO.HEX(28)
1Cconverts decimal 28 to hexadecimal
=DEC.TO.HEX(28, 4)
001Cconverts decimal 28 to hexadecimal with 4 characters