Converts an Octal number as text to a Decimal number.
oct2dec( value, … )
value: (Text) Octal value as text to convert, such as 771.
771
Integer
Invalid digits for a value parameter, including signs, are ignored.
oct2dec(20) returns 16
oct2dec(20)
16
On This Page