I'm going to make 1 last effort to see if there's a way to do this. Thanks to those that have helped so far!
I have a table tblTest2 where the BirthDate field is entered as a text field and I want to convert it to a date field. What I've tried so far is creating a query from tblTest2 with the BirthDate field (still text) and a new field named newDOB as a date field, formatted to short date. I've then run an update query with the criteria in the Update to field under newDOB as
DateValue(Left([BirthDate],2) & "/" & Mid([BirthDate],3,2) & "/" & Right([BirthDate],4))
When I go to datasheet view after running the update query, it changes the first record in newDOB only and leaves the rest of the entries under newDOB blank. Any suggestions on how I get each of the records to update? An example of how the text records under BirthDate are entered is 71355 for 7/13/55. The preceding zero before 7 does not appear. Any suggestions would be appreciated. Thanks!
I have a table tblTest2 where the BirthDate field is entered as a text field and I want to convert it to a date field. What I've tried so far is creating a query from tblTest2 with the BirthDate field (still text) and a new field named newDOB as a date field, formatted to short date. I've then run an update query with the criteria in the Update to field under newDOB as
DateValue(Left([BirthDate],2) & "/" & Mid([BirthDate],3,2) & "/" & Right([BirthDate],4))
When I go to datasheet view after running the update query, it changes the first record in newDOB only and leaves the rest of the entries under newDOB blank. Any suggestions on how I get each of the records to update? An example of how the text records under BirthDate are entered is 71355 for 7/13/55. The preceding zero before 7 does not appear. Any suggestions would be appreciated. Thanks!