Functions
OCT2DEC
Convert octal to decimal
Try it
When to use it
When do I use OCT2DEC?
Use OCT2DEC to convert an octal number to its decimal equivalent, which is common when reading Unix file-permission values (e.g., 755) or legacy hardware documentation that uses octal notation.
Used in
Syntax
OCT2DEC(number)Examples
=OCT2DEC("37") // => 31
=OCT2DEC("177") // => 127