Hello All,
I have two tables that report errors:
- TblOne: Inputted through a form
- TblTwo: Imported form a separate excel sheet (emailed every day)
The tables report the same TYPE of information: They are reporting errors that operators make.
However: they are dissimilar in structure, field headings, the way data is labelled and identified, etc.
Current:
I am using a query linked to a form to generate my report:
- The form allows the user to select Operator and Date (from TblOne)
- The "Submit" button on the form activates the query, whose criteria is the boxes on the form.
- Query pulls results from TblOne as desired.
Need:
- The form allows the user to select Operator and Date
- The "Submit" button on the form activates the query, whose criteria is the boxes on the form.
- Query pulls results from TblOne and TblTwo as desired.
Example:
TblOne Record Example
Field: [Operator] [Main Issue] [Location Found] [Date]
Barney Lost Wallet Drive-In 01/2/2013
TblTwo Record Example
Fields: [STA] [Error] [Amount] [State] [ID] [Date]
Barney Bank Robbery $100,000 NY 100034002 01/05/2012
Form:
Name (Combo Box): Barney
Date From: 01/01/2012
Date To: 02/01/2013
*Click* Submit
Query Returns:
[STA] [Error] [Amount] [State] [ID] [Date] [Main Issue] [Location Found]
Record 1: Barney Bank Robbery $100,000 NY 100034002 01/5/2012
Record 2: Barney 01/2/2013 Lost Wallet Drive-In
(Pre-Submission I had the fields all spread out with their respective information under each heading, submission has scrunched everything together)
Is this possible? Is there a better way to do this?
Your replies are appreciated.