Mengonversi bilangan oktal ke padanan desimalnya
=OCT2DEC(number)
| Parameter | Deskripsi |
|---|---|
number |
The octal number you want to convert. |
To convert the octal number 10 to decimal, use the following formula:
=OCT2DEC(10) // returns 8
Excel represents negative numbers in non-decimal bases (like octal) using two's complement notation with a fixed width of 10 characters. For example,
=OCT2DEC(7777777776) // returns -2