The DECIMAL function takes two arguments: number and radix. Number should be the text representation of a number in a known base. Radix is the number of digits used to represent numbers (i.e. the base) and should be an integer between 2 and 36. The characters given in number need to conform to the numbering system specified with radix. 

Examples

In the hexadecimal number system, the number 255 is represented as “FF”. To convert the text string “FF” to the decimal number 255, you can use the DECIMAL function like this: To convert the binary number 1101 to its decimal number equivalent, 13, use DECIMAL like this: In the example shown, the numbers in column B are in different bases, and the base is given in column C. The formula in column D5 is: As the formula is copied down, the DECIMAL function converts each number in column B to its decimal equivalent using the base specified in column C for the radix argument. The decimal numbers in column D are the output from DECIMAL.

BASE function

The BASE function performs the opposite conversion as the DECIMAL function: See more on the BASE function here.

Number system characters

Different bases use different alphanumeric characters to represent numbers. The table below shows the characters uses for binary, octal, decimal, and hexadecimal number systems.

Notes

The number argument should be provided as a text string. The result from DECIMAL is a numeric value. If number is negative, DECIMAL returns a #NUM! error. if number contains a decimal value,  DECIMAL returns a #NUM! error. If number is out-of-range for the given base, DECIMAL returns a #NUM! error.

Dave Bruns

Hi - I’m Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.