Oct 関数 の使い方
【書式】
result = Oct ( expression )
引数・戻り値
- expression ・・・ 任意の数式・文字列式を指定します。
- result ・・・ 引数 expression を8進数(最大11桁)で表した文字列式(String)。
引数 expression が、整数でない場合は、一番近い整数に丸められます。
引数 expression が、Null 値の場合は、Null 値を返します。
引数 expression が、Empty 値の場合は、0 を返します。
適切な範囲の数値の前に「 &O 」を付けて記述すると、値を直接 8 進数で記述することができます。
(例)8(10進数) ⇒ &O10(8進数)
Oct 関数 の使用例
サンプルVBAソース
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
Sub Sample_Oct() Debug.Print Oct(10) Debug.Print Oct(999) Debug.Print Oct(76) Debug.Print Oct(75.886) Debug.Print Oct("-10") Debug.Print Oct(-10.25) End Sub |