=DEC2HEX(number, [places])
DEC2HEX(100, 4)
The function converts the decimal value 100 to its hexadecimal equivalent, padded with two leading zeros. The hexadecimal value for 100 is 64, but DEC2HEX adds two leading zeros to the result, making it 0064.
DEC2HEX(-54)
The function is used to convert the decimal value -54 to its hexadecimal equivalent. The hexadecimal value for -54 is -36.
DEC2HEX(28)
The function is used to convert the decimal value 28 to its hexadecimal equivalent. The hexadecimal value for 28 is 1C.
DEC2HEX(64,1)
The function is used to convert the decimal value 64 to its hexadecimal equivalent, padded with one leading zero. However, the hexadecimal value for 64 is 40, which requires two digit places. Therefore, the function returns an error value.
The DEC2HEX function converts a decimal number to its corresponding hexadecimal notation. This conversion can be done with or without specifying the places argument.