Daffodil Computers Ltd.

Office Suite Tutorial => Microsoft Office Access => Topic started by: bbasujon on August 15, 2012, 05:23:12 PM

Title: Microsoft Access Function Library: Hex()
Post by: bbasujon on August 15, 2012, 05:23:12 PM
Function: Hex()

Purpose: The Hex() function converts a whole number into a string containing its hexadecimal representation.

Usage: Hex(value)

Value is a numeric or string expression that evaluates to a number. If it evaluates to a decimal number, Hex() rounds it to the nearest whole number prior to conversion.


Returns: String containing the hexadecimal value.

Examples and Special Cases

 Hex(12)= "b"
 Hex(125)= "7d"
 Hex(125.4)= "7d"
 Hex(125.6)= "7e"