I am importing an Excel file into my database, but the columns do not match my fields. My database tables have separate "Name" and "EmployeeNumber " fields, while the excel file combines the two as "Name - EmployeeNumber" .
Example: Following a direct import from an Excel file to Access, I am splitting out the Employee Number "C1234" from "John Smith - C1234" using an InStr query expression. The difficulty I now face is establishing a relationship between the result of this expression, and my other tables in order match up with data in other tables.
At this time, it is not possible to have the Excel file created in the format I need, as it is the output of another program. I have limited capabilities in the other program, and this is why I am attempting to create a parallel database, to be updated with periodic imports through the Excel outputs.
Example: Following a direct import from an Excel file to Access, I am splitting out the Employee Number "C1234" from "John Smith - C1234" using an InStr query expression. The difficulty I now face is establishing a relationship between the result of this expression, and my other tables in order match up with data in other tables.
At this time, it is not possible to have the Excel file created in the format I need, as it is the output of another program. I have limited capabilities in the other program, and this is why I am attempting to create a parallel database, to be updated with periodic imports through the Excel outputs.
Comment