Documentation/How Tos/Calc: EXACT function
From Apache OpenOffice Wiki
< Documentation | How Tos
Revision as of 20:05, 1 June 2013 by Javier Lopez (talk | contribs)
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.