Documentation/How Tos/Calc: DECIMAL function

From Apache OpenOffice Wiki
< Documentation‎ | How Tos
Revision as of 16:49, 19 January 2008 by Drking (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


DECIMAL

Returns a decimal number, given a text representation and its base radix.

Syntax:

DECIMAL(text; radix)

text is text representing a number with the base radix radix (an integer between 2 and 36).
Any leading spaces and tabs are ignored.
Letters, if any, may be upper or lower case.
If radix is 16 (hexadecimal system), any leading 0x, 0X, x or X is ignored, as is any trailing h or H.
If radix is 2 (binary system), any trailing b or B is ignored.

Example:

DECIMAL("00FF"; 16)

returns 255 as a number (hexadecimal system).

DECIMAL("101b"; 2)

returns 5 as a number (binary system).

See also:

BASE, FIXED

BIN2DEC, BIN2HEX, BIN2OCT

Text functions

Personal tools