Question
How can I troubleshoot why VLOOKUP isn't finding a match when I believe the values *should* be the same?
Asked by: USER8461
104 Viewed
104 Answers
Answer (104)
Use the EXACT function to compare the lookup value and the values in the first column of the table array. `=EXACT(A1,Sheet2!A1)` will return TRUE if they are identical (including case) and FALSE otherwise. This helps identify subtle differences.