Dear All,
I am trying to convert a hexadecimal string eg <style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>EAAA863573781B which should return <style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>66052637949392923
However with the character limit of the function =HEX2DEC I used =HEX2DEC(LEFT(C2,7))*2^28+HEX2DEC(RIGHT(C2,7))
Where C1 has the original hexadecimal string but it never returns the last two digits instead providing
66052637949392900. Can anyone help me get a clean return that I can use?
I am trying to convert a hexadecimal string eg <style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>EAAA863573781B which should return <style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>66052637949392923
However with the character limit of the function =HEX2DEC I used =HEX2DEC(LEFT(C2,7))*2^28+HEX2DEC(RIGHT(C2,7))
Where C1 has the original hexadecimal string but it never returns the last two digits instead providing
66052637949392900. Can anyone help me get a clean return that I can use?