DECIMAL function
Summary
Converts a text representation of a number in a given base into a decimal number
Syntax
DECIMAL(text, radix)
The DECIMAL function syntax has the following arguments.
• Text Required.
• Radix Required. Radix must be an integer.
• Text Required.
• Radix Required. Radix must be an integer.
Example
=DECIMAL("FF",16)
=HEX2DEC("ff")
=DECIMAL(111,2)
=BIN2DEC(111)
=DECIMAL("zap",36)
=HEX2DEC("ff")
=DECIMAL(111,2)
=BIN2DEC(111)
=DECIMAL("zap",36)