Reputation: 7289
I have different excel sheets and I am trying to populate values into one sheet from another sheet by comparing the values
Sheet 1 is like below
Sheet 2 has below columns
Now if the name is same, I want to populate Email & Mobile to Sheet 1 from Sheet 2
I tried using VLOOKUP, but I am not able to get the syntax right. Any help is appreciated.
Hope my question is clear, please feel free to drop in a comment if you need any clarification, thanks
Upvotes: 0
Views: 49
Reputation: 140
for the email:
=vlookup(a2, sheet2!A:C, 2, false)
for the Mobile #:
=vlookup(a2, sheet2!A:C, 3, false)
Upvotes: 1