Not really sure where to start in solving this problem. I've inherited a database at work that is a bit disorganized. I've taken data from a few different tables and combined them all into one table. The issue I have is that some of the information from the different tables overlaps, causing me to have multiple entries for each record that I want in my final table. I have 4 different ID numbers (Letters and Numbers) that are all unique to one facility/record (at least I think so). The rest of my fields are pieces of information about the facilities, things like addresses, phone numbers, various dates, owner information, etc. that all match up with these ID's. An example of what this might look like:
ID1 ID2 ID3 ID4 Name Address Owner Phone Number W16 F69 761 Facility1 123 Street 555 5555 W16 F69 Facility1 123 St John Smith W16 F69 F6901 123 Street Smith, John w16 761 Facility_1 John Smith 555-5555
As you see, not every piece of information is formatted in the same way, the ID's are all standard but the other information has been entered in varying formats depending on different people's input styles in the past.
What I want to do is somehow combine each of these entries for the same facility into one record so that it looks like this:
ID1 ID2 ID3 ID4 Name Address Owner Phone Number W16 F69 F6901 761 Facility1 123 Street John Smith 555-5555
However, not every record in the table has every piece of information. There are various facilities that have not been assigned and of the 4 ID's yet, and there are some that only have 1-3 of them.
Once I get everything cleaned up and combined I will use a form to go through each record to enter any missing data into the fields, so I was thinking that I might be able to use a form to bring up all entries with the same ID1, for example, and making the necessary adjustments to combine the information.
Right now I have almost 7000 records so it would take quite a while to manually do this in a spreadsheet. After spending some time searching online for a solution I decided I would come here to ask for help. Any ideas?
(Please let me know which pieces of information I left out for you guys to help, thanks)