Difference between revisions of "Documentation/How Tos/Calc: DECIMAL function"

From Apache OpenOffice Wiki
Jump to: navigation, search
m (Robot: Automated text replacement %s)
m
Line 22: Line 22:
 
<tt>'''DECIMAL("101b"; 2)'''</tt>
 
<tt>'''DECIMAL("101b"; 2)'''</tt>
 
: returns <tt>'''5'''</tt> as a number (binary system).
 
: returns <tt>'''5'''</tt> as a number (binary system).
 +
 +
=== Issues: ===
 +
This function is currently shown in the Text category of the Function Wizard.
  
 
{{Documentation/SeeAlso|
 
{{Documentation/SeeAlso|
Line 37: Line 40:
 
* [[Documentation/How_Tos/Calc: Functions listed alphabetically|Functions listed alphabetically]]
 
* [[Documentation/How_Tos/Calc: Functions listed alphabetically|Functions listed alphabetically]]
 
* [[Documentation/How_Tos/Calc: Functions listed by category|Functions listed by category]]}}
 
* [[Documentation/How_Tos/Calc: Functions listed by category|Functions listed by category]]}}
 
=== Issues: ===
 
This function is currently shown in the Text category of the Function Wizard.
 

Revision as of 10:02, 2 March 2009


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).

Issues:

This function is currently shown in the Text category of the Function Wizard.

Template:Documentation/SeeAlso

Personal tools