Complex formula possibly Index & Match

DoggoS

New Member
Joined
Feb 14, 2023
Messages
11
Office Version
  1. 365
Platform
  1. Windows
Hi there,

I have 2 sheets containing various employee data - one sheet named 'Mob Data' contains the Employee Full Name (in column A) and the other sheet named 'Master data' contains Employee Full Name (in column A) along with Employee's function (in column F of this sheet).
I need a formula to look up the Employee Name from 'Mob Data' sheet and match it to the Employee Full Name from 'Master data' sheet and if it finds it to then retrieve the Function from this sheet and populate it into the Function column (column B) within the 'Mob Data' sheet.
I hope that makes sense...
Grateful for any assistance - thank you in advance :)
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
try:
place this in cell b1:
Excel Formula:
=xlookup(A1,'Master Data'!$A$1:$A$500,'Master Data'!$F$1:$F$500)

copy down.
 
Upvote 0
try this in B2 and copy down

=VLOOKUP(A2, 'Master data'!A:F, 6, FALSE)
 
Upvote 0
Solution
try:
place this in cell b1:
Excel Formula:
=xlookup(A1,'Master Data'!$A$1:$A$500,'Master Data'!$F$1:$F$500)

copy down.
Thank you for this - unfortunately it failed to retrieve the actual data value from the function column but all good the below formula was successful :)
 
Upvote 0
Thank you for this - unfortunately it failed to retrieve the actual data value from the function column but all good the below formula was successful :)
mm. works for me. But, you found a solution!
 
Upvote 0

Forum statistics

Threads
1,214,590
Messages
6,120,423
Members
448,961
Latest member
nzskater

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top