010 The Bit Switcher

Goal: Translate between Machine Code (Binary) and Human Numbers (Decimal).
Each bit represents a power of 2. Toggle the switches to see the math.

0
Ready...

💻 Formula Structure

=BIN2DEC(number)
  • Input: A text string of 0s and 1s (e.g., "1101").
  • Max: 10 bits (up to 511 decimal).
-- Convert Binary to Decimal
=BIN2DEC( "00000000" )
Result:
-

⚠️ Limits

🚫 10-Bit Limit
Standard Excel Engineering functions are limited to 10 bits (-512 to 511). For larger numbers, you need custom formulas or VBA.