I currently have a database that compares some data between two tables such as firstname, lastname, and dob to see if there is a match between two tables. The second table is created from a spreadsheet that is received monthly. In the past the DOB field has been a short date. Recently the database stopped working because the DOB field has changed format on the spreadsheet. Instead of it being dd/mm/yyyy format it has gone to just a string of numbers. For instance, 05/24/2016 is now 20160524 which I can't import due to inconsistent format. I'm wondering how to go about fixing this problem.