
Not applicable
2010-05-20
08:47 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Convert Decimal To Hexadecimal
Hello,
I got a problem in converting a minus decimal number into an hexadecimal number.
Input: -1073741703
Ouput: FFFFFFFFC0000079
If I'm converting this in the MS Calculator i got the right number, if i use the formula "num(-1073741703), '(HEX)')" i got a 3FFFFF87.
Maybe someone other has a solution for me?
3,362 Views
1 Solution
Accepted Solutions

Not applicable
2010-05-20
09:14 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi
did not work with a 64 bit number but with 48 bits
=num(pow(2,48) - 1073741703,'(HEX)')
Regards
Jürg
2,158 Views
2 Replies

Not applicable
2010-05-20
09:14 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi
did not work with a 64 bit number but with 48 bits
=num(pow(2,48) - 1073741703,'(HEX)')
Regards
Jürg
2,159 Views

Not applicable
2010-05-20
10:03 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Works perfect, thanks!
2,158 Views
