- How does EXACT differ from the = operator in Excel?
- The = operator performs a case-insensitive comparison, so "Alice" = "alice" returns TRUE. EXACT, on the other hand, is case-sensitive and will return FALSE unless the text matches exactly, including uppercase and lowercase characters.
- Can EXACT compare whole ranges at once?
- Yes. In both Excel and Google Sheets, if you pass two equally-sized ranges, EXACT returns an array of Boolean values, each indicating whether the corresponding cells match exactly. The ranges must be the same size, otherwise you get a #VALUE! error.
- Why does EXACT return #VALUE! when I compare two columns of different length?
- EXACT expects the two arguments to be comparable element-by-element. When the dimensions differ, the function cannot align the cells and therefore signals the mismatch with a #VALUE! error. Make the ranges the same size or compare single cells to avoid this.
- How can I ignore leading/trailing spaces when using EXACT?
- Wrap each argument with TRIM before calling EXACT, e.g., =EXACT(TRIM(A2), TRIM("Alice")), which removes extra spaces so the comparison focuses only on the core characters.