Group,
I use the following to convert a decimal summation into a hex checksum. Only problem is when I report a number back like 7E15, excel thinks its scientific notation and reports back 7000000000000000.
Decimal CheckSum = 32277, convert to Hex = 7E15, DisplayCheckSum reads back 7000000000000000. How do I ensure a hex number instead of scientific notation?
DisplayCheckSum = Right(Hex(CheckSum), 4)
Tony
Bookmarks