Minggu, 14 November 2010

Mengubah desimal ke oktal (convert decimal to octal)

Dengan menggunakan excel 2003 kita dapat melakukan konversi angka desimal ke dalam angka oktal (basis 8). Fungsi tersebut sudah tersedia di excel namun memiliki beberapa keterbatasan. Aturan penulisannya dan keterbatasan fungsi ini bisa dsilihat di bawah ini :


Syntax
DEC2OCT(number, places)

Number is the decimal integer you want to convert. If number is negative, places is ignored and DEC2OCT returns a 10-character (30-bit) octal number in which the most significant bit is the sign bit. The remaining 29 bits are magnitude bits. Negative numbers are represented using two's-complement notation.
Places is the number of characters to use. If places is omitted, DEC2OCT uses the minimum number of characters necessary. Places is useful for padding the return value with leading 0s (zeros).
Remarks
If number < -536,870,912 or if number > 536,870,911, DEC2OCT returns the #NUM! error value.
If number is nonnumeric, DEC2OCT returns the #VALUE! error value.
If DEC2OCT requires more than places characters, it returns the #NUM! error value.
If places is not an integer, it is truncated.
If places is nonnumeric, DEC2OCT returns the #VALUE! error value.
If places is negative, DEC2OCT returns the #NUM! error value.

Kita mencoba menerapkan fungsi konversi desimal ke oktal di atas

1. Buat tabel seperti di bawah ini




2. Kemudian pada beberapa sel /kolom masukkan formula seperti di bawah ini
a. Di sel B3
=DEC2OCT(A3)
b. Di sel C3
=DEC2OCT(A3,4)
c. Di sel D3
=DEC2OCT(A3,8)

Hasilnya akan terlihat seperti di bawah ini

Related Posts by Categories



0 komentar:

Posting Komentar

Silahkan Ketik komentar anda,
Blog ini adalah Blog do follow saya harap tidak memberikan komentar spam.