Converts a decimal number to an octal number.
Esta função funciona no Google Sheets da mesma forma que no Excel — mesma sintaxe e argumentos.
DEC2OCT(number, [places])The DEC2OCT function converts a decimal integer to its octal equivalent. If the number is negative, the function returns a 10-character two's complement octal number.
=DEC2OCT(56)Resultado: 70
Converts the decimal number 56 to octal.
=DEC2OCT(10, 4)Resultado: 0012
Converts 10 to octal with a fixed length of 4 characters.
The number must be between -536,870,912 and 536,870,911.