Oct Function
Returns the octal value of a number.
Syntax:
Oct (Number)
Return value:
String
Parameters:
Number: Any numeric expression that you want to convert to an octal value.
Example:
Sub ExampleOct
MsgBox Oct(255)
End Sub
Returns the octal value of a number.
Oct (Number)
String
Number: Any numeric expression that you want to convert to an octal value.
Sub ExampleOct
MsgBox Oct(255)
End Sub