Purpose
Converts a binary number to decimal
Return value
Decimal Number
Syntax
=BIN2DEC(number)
- number - The binary number you want to convert to decimal.
How to use
The first bit of the binary number indicates whether the number is positive or negative. The other nine digits represent the size of the number, the max of which is 511 (2^9 - 1). A negative binary number is expected to use the two's complement notation.