WorksheetFunction.Hex2Dec(Object) Method

Definition

Converts a hexadecimal number to decimal.

public:
 System::String ^ Hex2Dec(System::Object ^ Arg1);
public string Hex2Dec (object Arg1);
Public Function Hex2Dec (Arg1 As Object) As String

Parameters

Arg1
Object

Number - the hexadecimal number you want to convert. Number cannot contain more than 10 characters (40 bits). The most significant bit of number is the sign bit. The remaining 39 bits are magnitude bits. Negative numbers are represented using two's-complement notation.

Returns

Remarks

If number is not a valid hexadecimal number, Hex2Dec returns the #NUM! error value.

Applies to