Converts a given hexadecimal number into binary.
Syntax
hexadecimal_number: The hexadecimal number you want to convert into binary. It can contain a maximum of 10 characters, between 0-9 and A-F. Eg., "FF"
Remarks
When the result value not does have the specified num_of_digits , zeroes are added to the left of the result value.
It is case-insensitive i.e., "A" and "a" are considered the same.
Examples
|
Formula |
Result |
|
=HEX2BIN("FF";12) |
000011111111 |
|
=HEX2BIN(A3) |
10100010 |
|
=HEX2BIN(A4) |
100100011 |
Possible Errors
|
Errors |
Meaning |
|
#N/A! |
|
|
#NAME! |
|
|
#VALUE! |
|
|
#REF! |
|
|
#NUM! |
|
Similar Functions