EXACT
Return TRUE
if the values are exactly equal, FALSE
otherwise
Usage
EXACT(text1, text2)
Parameters
text1 |
(Required) Value to compare |
text2 |
(Required) Value to compare |
Examples
More information
Unlike the =
operator, this function is case sensitive, so “A” is considered different from “a”.
Unlike the =
operator, this function is extra space sensitive, so "hello world"
is
considered different from " hello world "
.