Exact()
This function checks whether the 2 text strings are exactly same or not. It returns TRUE or FALSE as per the case. This function is case-sensitive and treats 'A' different from 'a'
Syntax:
= Exact (Text1, Text2)
Text1, Text2 = are 2 text strings to be compared
Example:
Following Examples will make the usage of Exact() function clear
- = Exact ("Excel, "Matic") - result will be - FALSE
- = Exact ("Excel, "excel") - result will be - FALSE
- = Exact ("matic, "Matic") - result will be - FALSE
- = Exact ("Excel, "Excel") - result will be - TRUE
- = Exact ("Matic, "Matic") - result will be - TRUE
0 comments:
Post a Comment