Converts a decimal number to an octal number.
تعمل هذه الدالة في Google Sheets كما تعمل في Excel تمامًا — بالصياغة والوسائط نفسها.
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)النتيجة: 70
Converts the decimal number 56 to octal.
=DEC2OCT(10, 4)النتيجة: 0012
Converts 10 to octal with a fixed length of 4 characters.
The number must be between -536,870,912 and 536,870,911.