Description: HEX2DEC is limited to 10 hex characters. In today's world that is not enough. It should be expanded to 64 bit. Steps to Reproduce: 1. =HEX2DEC("30000000000") Actual Results: Err:502 Expected Results: 3298534883328 Reproducible: Always User Profile Reset: Yes OpenGL enabled: Yes Additional Info:
@Eike, @Winfried, I thought you might be interested in this issue...
HEX2DEC() and other binary conversion functions are defined to work on 40-bit values where the 40th bit is the sign bit. This for interoperability reasons. See https://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-part2.html#HEX2DEC Won't change. Use the BASE() and DECIMAL() functions if you need larger ranges.