Checks whether two text strings are exactly the same.
Esta función funciona igual en Google Sheets que en Excel: misma sintaxis y mismos argumentos.
EXACT(text1, text2)The EXACT function compares two text strings and returns TRUE if they are identical, including case sensitivity. It ignores formatting and is useful for verifying data entries where capitalization matters.
=EXACT("Apple", "apple")Resultado: FALSE
Returns FALSE because the function is case-sensitive.
=EXACT("Excel", "Excel")Resultado: TRUE
Returns TRUE because both strings are identical.
Yes, unlike the standard equal sign (=) operator, EXACT is strictly case-sensitive.