Hey all,
I have a project where I need to create a join between 2 tables in order to pull corresponding data into the table that does not have the needed data. The tables have Lat and long, but the lat and long data differs between the 2 tables so that option is not as ideal as I would like and the distance varies widely between examples.
My next thought was to use the text in the address fields to create the match. To shorten the story, I used .strip() to remove extra spaces on each data column that contained address data then used .upper() to normalize the data. I then concatenated the fields into one Address field. I repeated this process on both sheets which should give me a single field to create the join. This field is formatted as a text field. However, with all of this on a table of over 3.4 million records I am only getting ~10k matches. If I copy and paste an address from the table into a blank excel sheet and do the same for the corresponding entry on the other table, I can use the remove duplicate tool in excel and it confirms the entries are matches.
What might I be missing?