lookup and match qiestion

Cossie

Active Member
Joined
May 6, 2002
Messages
328
Hello everyone

I have two tabs and need to match up a set of numbers.

In one tab (Claims) i have a column of ID's (column J) and in another tab (outcomes) I need to check to see if the same ID exits in column H and if the ID's are in the second tab return a date from column X in the second tab to the claims tab.

Is there a quick way to do this?

If it could goto the last record of both colums automatically rather than me setting it to line limit that would be excellent as well.

Thanks
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
It sounds like what you need is a VLOOKUP formula in the CLAIMS tab like this assuming that your data in both sheets starts in row one and I chose 300 arbitrarily (you can adjust this to match your data).

=VLOOKUP(J1,Outcomes!$H$1:$X$300,17,FALSE)

I'm not sure that I follow you for the rest of it, if you could clarify I will try and help you out.
 
Upvote 0
Try,

=if(isnumber(match(j1,outcomes!h1:h1000,0)),index(outcomes!x1:x1000,match(j1,outcomes!h1:h1000,0)),"")

HTH
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,591
Members
449,089
Latest member
Motoracer88

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