DECIMAL(text, radix)
=DECIMAL("FF",16)
The DECIMAL function can be used to convert a number from one base to another. For example, this formula will return a decimal of 255.
=DECIMAL("1101",2)
The DECIMAL function can also be used to convert binary numbers to decimal. For example, this formula will return a decimal of 13.
=DECIMAL(B5,C5)
The DECIMAL function can be used in combination with other cell references. For example, this formula will convert the number in cell B5 to its decimal equivalent using the base in cell C5.
The DECIMAL function converts text representations of numbers into decimal numbers, requiring both the text and radix arguments. The radix must be an integer.