Return every match
=FILTER(B2:B,EXACT(E2,A2:A))Returns all rows with exactly the same case.
Match IDs that differ only by uppercase and lowercase letters.
Match IDs that differ only by uppercase and lowercase letters. Use =INDEX(B2:B,MATCH(TRUE,EXACT(E2,A2:A),0)), then replace the sample ranges with the columns in your sheet.
EXACT creates a case-sensitive TRUE/FALSE array for MATCH.
| A | B | |
|---|---|---|
| 1 | Code | Owner |
| 2 | ||
| 3 | ||
| 4 |
=FILTER(B2:B,EXACT(E2,A2:A))Returns all rows with exactly the same case.
=SUM(N(EXACT(E2,A2:A)))Counts exact-case matches.
=IFNA(INDEX(B2:B,MATCH(TRUE,EXACT(E2,A2:A),0)),"Not found")Replaces #N/A.
Use EXACT inside MATCH or FILTER.
Use the formula as written; modern Google Sheets handles the array automatically.
Use EXACT inside MATCH or FILTER.
Use the formula as written; modern Google Sheets handles the array automatically.
Send this recipe to the SheetSteps assistant and describe how your columns are arranged.