Using DEC2BIN() with large numbers

后端 未结 9 1881
暖寄归人
暖寄归人 2020-12-31 06:28

I\'m trying to convert 4503599627370495 into binary in Excel. DEC2BIN() returns #NUM! error because DEC2BIN cannot handle such a large number.

Any thou

9条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-31 07:06

    This is super simple, Base(...) function can help you.

    BASE(CELL, 2)
    

    The second param 2 is for binary, you can convert to other relevant bases as Hex, Oct

提交回复
热议问题