Difference between revisions of "Documentation/How Tos/Calc: LEFT function"
From Apache OpenOffice Wiki
< Documentation | How Tos
Javier Lopez (talk | contribs) |
|||
Line 47: | Line 47: | ||
: returns <tt>'''out'''</tt>. | : returns <tt>'''out'''</tt>. | ||
− | {{ | + | {{SeeAlso|EN| |
* [[Documentation/How_Tos/Calc: RIGHT function|RIGHT]] | * [[Documentation/How_Tos/Calc: RIGHT function|RIGHT]] | ||
* [[Documentation/How_Tos/Calc: MID function|MID]] | * [[Documentation/How_Tos/Calc: MID function|MID]] |
Revision as of 07:27, 17 July 2018
LEFT
Returns text from the left side of a text string.
Syntax:
LEFT(text; number)
- returns number characters from the left side of the text text.
- number defaults to 1 if omitted.
Example:
LEFT("output"; 3)
- returns out.
See Also