Link to home
Start Free TrialLog in
Avatar of Muskett
Muskett

asked on

Cell look up

I have a sheet that contains project numbers (column A) and descriptions in column B.
In another sheet I have created a dropdown box that has all the project numbers. I want the adjacent column to fill in the description depending on the project number selected.
ASKER CERTIFIED SOLUTION
Avatar of Rory Archibald
Rory Archibald
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
You might use a formula like:
=IFERROR(VLOOKUPD2,'Other sheet'!$A$2:$B$1000,2,FALSE),"")
Avatar of Muskett
Muskett

ASKER

Great response, exactly what I was trying to figure out. Sorry to the other reply which I like as it gets rid of errors but I cannot get it to run.
Brad's was just missing a parenthesis:

=IFERROR(VLOOKUP(D2,'Other sheet'!$A$2:$B$1000,2,FALSE),"")
Thanks Rory. That's what I get for not testing.

Brad
Avatar of Muskett

ASKER

Hi Brad,
I cannot change the points but big thanks anyway.
Actually the  formula should be:
=IFERROR(VLOOKUP(A1,'Other sheet'!$A$2:$B$1000,2,FALSE),"")
I have tested and it works perfectly.

Thanks
Dave