OCT2BIN function
OCT2BIN converts an octal number to a binary number.
Syntax
OCT2BIN(number, [places])
Number is an octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement.
Places means the number of places to be output.
Example
=OCT2BIN(3,3) returns 011.