easy excel question...

DanielG

New Member
Joined
Oct 9, 2006
Messages
4
Here's my mock data (there should be spaces between Jones and 1/5/05, David and 3/5/06, etc..):

Worksheet A:
Column A Column B
Jones 1/5/05
David 3/5/06
Lewis 2/3/03
Smith 12/6/06

Worksheet B:
Column A Column B
Jeffries
Jones
Smith
Steingold

What I need is a formula that will write in Column B of Worksheet B the
dates of any matching names (between Column A of Worksheet A and Column A of Worksheet B). So, for this example, the product of the formula would be that Column B (of Worksheet B) shows the dates for Jones + Smith, and would show nothing (meaning, a blank field) for the other names.

Thanks for any help!
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
In Column B of the worksheet B, place this formula:

Code:
=IF(ISERROR(VLOOKUP(A1,Sheet1!$A$1:$B$4,2,0)),"",VLOOKUP(A1,Sheet1!$A$1:$B$4,2,0))

Gene, "The Mortgage Man", Klein
 
Upvote 0

Forum statistics

Threads
1,215,482
Messages
6,125,058
Members
449,206
Latest member
Healthydogs

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