HEX2OCT(number,base)
=HEX2OCT("F", 3) converts hexadecimal F to octal with 3 characters. This example is using the HEX2OCT function to convert the hexadecimal value of "F" to an octal with 3 characters. The result of this example is "017".
=HEX2OCT("3B4E") converts hexadecimal 3B4E to octal. This example is using the HEX2OCT function to convert the hexadecimal value of "3B4E" to an octal. The result of this example is "35364".
=HEX2OCT("FFFFFFFF00") converts hexadecimal FFFFFFFF00 to octal. This example is using the HEX2OCT function to convert the hexadecimal value of "FFFFFFFF00" to an octal. The result of this example is "37777777000".
The HEX2OCT function is used to convert a hexadecimal number to its equivalent octal notation. The number argument is required, while the places argument is optional. The number argument is the hexadecimal number to convert, and the places argument is the number of characters to use.