I have a table that is comprised of 2 previously seperate tables. The data sources were different for each, so the formatting of the date fields (specifically) were different. One source parsed the date fields into 3 seperate text fields for YYYY, one field for MM, and one for DD. The other source provided the dates as MM/DD/YYYY.
I have parsed the date elements from the MM/DD/YYYY into seperate fields, but now do not know how to move the seperated fields into the fields from the first data source table.
In other words, I now have a table with 3 date sets. One from the original table that are seperated, and one with the whole date and another with its parsed components.
How can I move the parsed date fields into the blank fields in the original table?
The table looks something like this:
DOB-M DOB-D DOB-Y DOB-Full....Parsed MM Parsed DD and Parsed YYYY
03 12 1951
02/27/1941 02 27 1941
I need to move the data from the right fields to the null fields under the date format on the left side so it all ends up in the same columns.
Thanks in advance for any advice.
I have parsed the date elements from the MM/DD/YYYY into seperate fields, but now do not know how to move the seperated fields into the fields from the first data source table.
In other words, I now have a table with 3 date sets. One from the original table that are seperated, and one with the whole date and another with its parsed components.
How can I move the parsed date fields into the blank fields in the original table?
The table looks something like this:
DOB-M DOB-D DOB-Y DOB-Full....Parsed MM Parsed DD and Parsed YYYY
03 12 1951
02/27/1941 02 27 1941
I need to move the data from the right fields to the null fields under the date format on the left side so it all ends up in the same columns.
Thanks in advance for any advice.