Index Match Help??

kcgojnur

Board Regular
Joined
Aug 13, 2014
Messages
122
Hello,

I'm wondering if index match will help me or do I need to go another route. I have a few columns of data. In column A and C I have employee ID numbers in which I have to see how many match. In column B I have task closed dates. I'm trying to find the id numbers that match in column A and C and if there is a match pull the task closed date from column B. Any suggestions?

Employee ID ATask Closed DateEmployee ID BOutput
123403/10/19147801/02/20
111105/20/19123403/10/19
321106/06/189635N/A
147801/02/20111105/20/19
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Extend the ranges in the formula below to match your data.
Book1
ABCD
1Employee ID ATask Closed DateEmployee ID BOutput
212343/10/201914781/2/2020
311115/20/201912343/10/2019
43211No Match9635N/A
514781/2/202011115/20/2019
Sheet4
Cell Formulas
RangeFormula
B2:B5B2=IF(ISNA(MATCH(A2,$C$2:$C$5,0)),"No Match",VLOOKUP(A2,$C$2:$D$5,2,0))
 
Upvote 0
Not sure what's going on. Instead of it pulling dates it's pulling random #'s. Basically, if C=A then I need to pull that date. For example C30=A425 then I should have the date that exists in B425.
 
Upvote 0
are you sure the "random" numbers are not date serial numbers? If not, be sure to format the cells the formulas are in as Dates, not General or numbers. Also, have you extended the ranges to cover all your data? If so, can you post the formula you are using?
 
Upvote 0
So I modified a few cells where the id's match and even modified the date. The formula remains same. No change.
 
Upvote 0
Can you answer my questions in post #4?
 
Upvote 0
Cross posted Index Match or Something Else??

While we do not prohibit Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules). This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.
 
Upvote 0

Forum statistics

Threads
1,214,431
Messages
6,119,457
Members
448,898
Latest member
drewmorgan128

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