Difference between revisions of "Documentation/How Tos/Calc: MID function"
From Apache OpenOffice Wiki
< Documentation | How Tos
m |
m |
||
| (3 intermediate revisions by 3 users not shown) | |||
| Line 1: | Line 1: | ||
| − | __NOTOC__ | + | {{DISPLAYTITLE:MID function}} |
| + | {{Documentation/CalcFunc TextTOC | ||
| + | |ShowPrevNext=block | ||
| + | |PrevPage=Documentation/How_Tos/Calc:_LOWER_function | ||
| + | |NextPage=Documentation/How_Tos/Calc:_PROPER_function | ||
| + | }}__NOTOC__ | ||
== MID == | == MID == | ||
| Line 12: | Line 17: | ||
: returns <tt>'''tp'''</tt>. | : returns <tt>'''tp'''</tt>. | ||
| − | {{ | + | {{SeeAlso|EN| |
* [[Documentation/How_Tos/Calc: LEFT function|LEFT]] | * [[Documentation/How_Tos/Calc: LEFT function|LEFT]] | ||
* [[Documentation/How_Tos/Calc: RIGHT function|RIGHT]] | * [[Documentation/How_Tos/Calc: RIGHT function|RIGHT]] | ||
Latest revision as of 15:33, 2 February 2024
MID
Returns text from the middle of a text string.
Syntax:
MID(text; start; number)
- returns number characters from the text text, starting at position start.
Example:
MID("output"; 3; 2)
- returns tp.
See Also