I'm running into issues with VLOOKUP formula. I've been looking at tutorials and even followed another example explaining on StackOverflow but the cells still say #N/A.
This is my formula.
=VLOOKUP($L2,surveydata,M$2,FALSE)
I'm trying to match the values in column L (phone) on one sheet with another sheet that contains phone as well (and labeled all the data as 'surveydata'), and then pull all the columns after into the original sheet.
== Table A == == surveydata == == Table result ==
Column L Column A, B, C Column L, M, N
Phone Phone,Fname,Lname Phone,Fname,Lname
012 789,John,Smith 123
789 012,Stan,Smith 456,Jane,Smith
456 789,John,Smith
123 456,Jane,Smith 012,Stan,Smith
Am I missing something entirely?