Hello!
I am working on a db that records employee reimbursable expenses. I'd like the employee to fill out either an online form or email an excel sheet (from a template), the resuts of which will be imported to populate a form which the administrator will review and add to the database.
The problem is that each expense report can have multiple lines written to different tables. Here is very simplified example
tblVoucher (Master)
VoucherID EmployeeID 22 3
tblTravelExpenses (Child)
DATE VoucherID REASON KM 12/12/14 22 Education 100 13/12/14 22 Conference 200
tblReimbusements (Child)
DATE VoucherID VENDOR TOTAL 12/12/14 22 Staples 20.00 10/12/14 22 Taxi 10
So my question is, how do I approach preparing the data for the import and then successfully populating the form?
Thanks!