Matching table A with table B(Plz give a look, m unable to do it)

livinggourmand

New Member
Joined
Aug 6, 2011
Messages
21
Hi,
I have 2 table both have more than 10K rows.

I have to find which row in main table corresponds with row in Check table.
note the combination should match not just a column.
ex A25 n B25 (main table) matches with D2 n E2 (check table)
note the combination should match not just a column.

plz let me know if any clarification is required

Thanks :)
2ro1b2xdw


the sheet is uploaded at google doc as i was not able to upload it here
https://docs.google.com/spreadsheet/ccc?key=0AltIfHyzagUAdHBpMkhURlFSbTA0cFJucXpIR1BCQXc&hl=en_US#gid=0
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
it worked!!!!! :D
Thanks a lot

can u explain briefly how ur formula wrks
it will be a great help

and i appreciate ur quick response and perfect solution :)
 
Upvote 0
it worked!!!!! :D
Thanks a lot

can u explain briefly how ur formula wrks
it will be a great help

IF($A$3:$A$29=D3,$B$3:$B$29)

tests whether A3:A29 is equal to the look up value in D3 and includes all of the corresponding B-values in the result array, something like...

{FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;
FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;
FALSE;92;FALSE;FALSE;FALSE;FALSE;FALSE}

MATCH(E3,result array,0)

matches the look up value in E3 against result array and reports the matches if successful. The error values (#N/A) are picked up by the outer IFERROR, leading to "no match".

and i appreciate ur quick response and perfect solution :)

You are welcome. Thanks for providing feedback.
 
Upvote 0

Forum statistics

Threads
1,214,945
Messages
6,122,393
Members
449,081
Latest member
JAMES KECULAH

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