d2h PowerHome formula function
Description
Converts decimal number into hexadecimal string
Syntax
d2h( number, length )
Argument Description
number Unsigned Long.  The decimal number to be converted.
length Integer.  Specifies the desired length of the hexadecimal string.
Return value
String.  Returns the converted hexadecimal string
Usage
Set the length parameter to 0 to have the function return the significant digits of the conversion (no leading zeros). 
Examples
The following examples demonstrate typical syntax/usage for this function.
d2h(3452,0)
The above example will return a string value of "D7C".