Hexadecimal is a numbering system using 16 as its base. The numbers in
hexadecimal are 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F, These correspond to the
numbers in the decimal system, base 10, of
0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15. In decimal when we add 1 to 9, we
get 10. In hexadecimal when we add 1 to F we get 10.
In other words in any numbering system, there is no one digit number that is
equal to the base. In binary, base 2, there is no number 2, just 0 and 1.
When we add 1 to 1 in binary, we get 10, 2 in decimal. You may use the
Dec2Hex function in Excel. If your decimal value, say 20 is in cell A1, in
cell B1 you could enter =DEC2HEX(A1) and B1 will say 14. 20 decimal is 14
hexadecimal.
Tyro