vlookup / match / index solution?

ollyhughes1982

Well-known Member
Joined
Nov 27, 2018
Messages
677
Office Version
  1. 365
Platform
  1. MacOS
[FONT=&quot]Hi,[/FONT]
[FONT=&quot]
[/FONT]
[FONT=&quot]Please can someone help - I think I need some sort of vlookup / match / index solution?[/FONT]
[FONT=&quot]
[/FONT]
[FONT=&quot]Basically what I need to do is fill the yellow column with the relevant data from the orange column.[/FONT]
[FONT=&quot]
[/FONT]
[FONT=&quot]For example: Where it has Sarah Lauder in cell A43, I want to populate cell C43 with the value from cell J255 (i.e. the ‘Age Category’ cell 2 columns adjacent to where Sarah Lauder appears in column G). If the value from column A isn’t in the lookup list (column G) then leave the cell in column C blank.[/FONT]
[FONT=&quot]
File is at below link:

https://1drv.ms/x/s!AtIvkRgReIvwgRXOFewzoaPlI4HK

[/FONT]
[FONT=&quot]Thanks![/FONT]
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Code:
=iferror(VLOOKUP(A2,$G$2:$J$298,4,FALSE),"")

In C2 and fill down.

If the name in A column isn't found in G, what then? This formula will give you #N/A...oops, yes you did.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,357
Messages
6,124,483
Members
449,165
Latest member
ChipDude83

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