Matching records

rireland

Board Regular
Joined
Feb 12, 2004
Messages
64
I've lost the Html maker addon & can't download (404 message) it again so will try to explain without it.
I have a list of names, address & member numbers - say 3000.
At year end 2800 of these people pay, using an online payment system. Giving their name, address & member number.
I want to match up the paid people to the member list (using member number as the matching field) . Then I can see what address details need to be updated and who hasn't paid.

1234 John Smith 2 High St... 1234 John Smith 2 High St ( this record is OK)

2341 Jill Jone 3 Low St... 2341 Jill Jone 5 Big St ( by using = on the address field I would find that this needs updating)

3453 Fred Brown 5 Main St ... ( no matching record - so unpaid)

I'm OK on checking if fields are equal, My problem is how to line up the 2800 paid records withe the 3000 member records.
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Try something like...
Code:
=IF(ISNUMBER(MATCH(MemberID,PayerIDs,0)),
    IF(INDEX(PayerAddresses,MATCH(MemberID,PayerIDs,0))=MemberAddress,
      "OK",
      "Update Address"),
    "No Payment")
 
Upvote 0

Forum statistics

Threads
1,216,169
Messages
6,129,270
Members
449,497
Latest member
The Wamp

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