Difference between revisions of "Documentation/How Tos/Calc: EXACT function"
From Apache OpenOffice Wiki
		< Documentation | How Tos
		
		
OOoWikiBot (talk | contribs) m (Robot: Automated text replacement %s)  | 
				m  | 
				||
| Line 26: | Line 26: | ||
* [[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]]}}  | ||
| − | [[Category: Documentation/Reference/Calc]]  | + | [[Category: Documentation/Reference/Calc/Text functions]]  | 
Revision as of 13:02, 17 May 2010
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.