Oct$ Function

Syntax
Oct[$](Num)
Group
String
Description
Return a octal string.
Parameters Description
Num Return an octal encoded string for this numeric value.
See Also
Hex$( ), Str$( ), Val( )

Sub Main
    Debug.Print Oct$(15) '17
End Sub