Matching columns

Solved/Closed
KJFin - 2 Jun 2010 à 17:27
 KJFin - 3 Jun 2010 à 11:15
Hello,
I have to an issue with matching columns.

Column A Column B Column C Column D


Column A: This has 300 lines with account #'s
Column B: This has 4300 lines with account #'s
Column C: This has 4300 lines with client #'s
Column D: This has 4300 lines with Balances

I need a formula that will match the 300 accounts in column A with the account #'s in Column B so I can get rid of the 4000 account that do not have a match with any of the accounts listed in Column A.

Please assist.



Related:

1 response

rizvisa1 Posts 4478 Registration date Thursday 28 January 2010 Status Contributor Last seen 5 May 2022 766
2 Jun 2010 à 17:37
Try this
on column E, in you can have

=IF(ISERROR(MATCH(B2,A:A,0)), 0, MATCH(B2,A:A,0))

This will show the row number of where the account number in a cell of column B, appears in column A. In case the account is not in A column, it will show 0.

You can filter on 0 and delete the rows
You are awesome than you very much for your assistance!!