Skip to main content
Version: Streamsheets 3.0

BIN.TO.OCT

Converts a binary number to octal.

Syntax

=BIN.TO.OCT(Number, [Places])

Arguments

NameTypeDescription
NumberNumberThe binary number to convert.
Places (optional)NumberThe number of characters to use for returned value. If value has less characters then it is padded with leading zeros.

Return

TypeDescription
Number or ErrorThe octal number or a #NUM! error if given number is not a valid binary number. The #VALUE! error is returned if specified places is not numeric or negative.

Examples

FormulaResultComment
=BIN.TO.OCT(1100100)
144converts binary 1100100 to octal
=BIN.TO.OCT(1100100, 4)
0144converts binary 1100100 to octal with 4 characters