Description
Compares two expressions for identical, case-sensitive matches. True is returned if the expressions are identical; False is returned if they are not.
Syntax
EXACT ( expression1, expression2 )
Parameter | Description |
---|---|
expression1 | Any text. |
expression2 | Any text. |
Examples
This function returns True:
EXACT("Match", "Match")
This function returns False:
EXACT("Match", "match")
See also