Difference between revisions of "Documentation/How Tos/Calc: EXACT function"
From Apache OpenOffice Wiki
< Documentation | How Tos
m |
m |
||
| (4 intermediate revisions by 3 users not shown) | |||
| Line 1: | Line 1: | ||
| − | __NOTOC__ | + | {{DISPLAYTITLE:EXACT function}} |
| + | {{Documentation/CalcFunc TextTOC | ||
| + | |ShowPrevNext=block | ||
| + | |PrevPage=Documentation/How_Tos/Calc:_DOLLAR_function | ||
| + | |NextPage=Documentation/How_Tos/Calc:_FIND_function | ||
| + | }}__NOTOC__ | ||
== EXACT == | == EXACT == | ||
| Line 15: | Line 20: | ||
: returns <tt>'''FALSE'''</tt>. | : returns <tt>'''FALSE'''</tt>. | ||
| − | {{ | + | {{SeeAlso|EN| |
* [[Documentation/How_Tos/Calc: FIND function|FIND]] | * [[Documentation/How_Tos/Calc: FIND function|FIND]] | ||
* [[Documentation/How_Tos/Calc: SEARCH function|SEARCH]] | * [[Documentation/How_Tos/Calc: SEARCH function|SEARCH]] | ||
Latest revision as of 15:29, 2 February 2024
EXACT
returns TRUE if two text strings are identical
Syntax:
EXACT(text1; text2)
- returns TRUE if the text strings text1 and text2 are exactly the same (including case).
Example:
EXACT("red car"; "red car")
- returns TRUE.
EXACT("red car"; "Red Car")
- returns FALSE.
See Also