Check whether two cells are identical, including letter case.
Copy this formula
=EXACT(A2, B2)EXACT returns TRUE only when the two values match exactly, case included. A plain =A2=B2 also compares but ignores case. Wrap in IF to return a friendly label.
=IF(EXACT(A2, B2), "Match", "Differ")→Differ"ABC" and "abc" are treated as different.
Case-insensitive
=IF(A2=B2, "Match", "Differ")Plain comparison ignores case.
Standard comparison is case-insensitive. Use EXACT for a case-sensitive check.
Need a formula for your own data?
Describe what you want in plain language and let ExcelGPT write, explain, and verify the formula — free to start, no plugin.