binary bit word

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can the 10 bit limit on a binary word be changed to a 15 bit word? I need to
convert a decimal to binary but my decimal number can be as high as 65535 and
because I'm limited to only 10 charactors I can't use this function.
 
to my knowledge you need 16 bits to express 65535

But if you need to express this within 10 characters 1111111111111111
just won't fit you could use Hexadecimal &FFFF
 
Don said:
Can the 10 bit limit on a binary word be changed to a 15 bit word? I need to
convert a decimal to binary but my decimal number can be as high as 65535 and
because I'm limited to only 10 charactors I can't use this function.

hy,
use this array formulas [confirm with ctrl+shift+enter]
=SUM(((0&REPT("8",ROW(INDIRECT("1:"&INT(LOG(H1,2)+1)))-1))+1)*ROUND($H$1/(2^
ROW(INDIRECT("1:"&INT(LOG(H1,2)+1)))),0))
In H1 your decimal number to traslate into bynary.
ivano
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top