OCT.TO.HEX
Converts an octal number to hexadecimal.
Syntax
=OCT.TO.HEX(Number, [Places])
Arguments
| Name | Type | Description | 
|---|---|---|
| Number | Number | The octal number to convert. | 
| Places (optional) | Number | The number of characters to use for returned value. If value has less characters then it is padded with leading zeros. | 
Return
| Type | Description | 
|---|---|
| Number or Error | The hexadecimal number or a #NUM! error if given number is not a valid octal number. The #VALUE! error is returned if specified places is not numeric or negative. | 
Examples
| Formula | Result | Comment | 
|---|---|---|
 | 40 | converts octal 100 to hexadecimal | 
 | 0040 | converts octal 100 to hexadecimal with 4 characters |