Greetings,
Have questions on Table design and Relationships. Using Access 97 SR1.
I have Time & Billing info that I'm working with. Every 2 weeks, I receive a new batch of data. It arrives as an Excel spreadsheet, which I convert to CSV.
I then import into Access using an Import Spec. There are 1400-1600 records per data batch.
There are 23 fields in the data, which includes such fields as:
BUserID = Time & Billing ID (ex: BIO00197)
PERN = Employee ID (ex: E00005121)
EmplName = Employee Name
BUserID and PERN are unique to each employee. Each employee has several records in each data batch.
Part of what I'm doing is checking each line for errors. I have numerous queries that check for different types of errors. Each line can have multiple errors.
I though that perhaps I could create a new table called t_Errors_and_Info. This would be associated with the Empl and their records. Thinking that I could use an Append Query that would append the type of error found to the Errors and Info table, but not quite sure how to do this, or if it's even the best method.
When I run the multitude of Reports I've been tasked to develop, the Brass wants to see the Employee, the detail line containing Time & Billing information, and any errors found.
Was thinking along these lines for table setup:
Table 1 = t_EmplInfo / This would be extracted using a Distinct Query against the main table, then using a Make-Table query to create the new EmplInfo table.
Fields
RecID
BUserID
PERN
EmplName
ORG
Table 2 = t_eBizLines
Fields
These would have all of the remaining Time and Billing fields. Wondering how best to relate this to the EmplInfo table.
Table 3 = t_Errors_and_Info / Need to relate this to the table t_eBizLines
Fields
ErrorTypes
Info
I apologize for such a lenghtly post. Thanking one and all for any assistance you may provide.
Regards,
Bob in Indy
Have questions on Table design and Relationships. Using Access 97 SR1.
I have Time & Billing info that I'm working with. Every 2 weeks, I receive a new batch of data. It arrives as an Excel spreadsheet, which I convert to CSV.
I then import into Access using an Import Spec. There are 1400-1600 records per data batch.
There are 23 fields in the data, which includes such fields as:
BUserID = Time & Billing ID (ex: BIO00197)
PERN = Employee ID (ex: E00005121)
EmplName = Employee Name
BUserID and PERN are unique to each employee. Each employee has several records in each data batch.
Part of what I'm doing is checking each line for errors. I have numerous queries that check for different types of errors. Each line can have multiple errors.
I though that perhaps I could create a new table called t_Errors_and_Info. This would be associated with the Empl and their records. Thinking that I could use an Append Query that would append the type of error found to the Errors and Info table, but not quite sure how to do this, or if it's even the best method.
When I run the multitude of Reports I've been tasked to develop, the Brass wants to see the Employee, the detail line containing Time & Billing information, and any errors found.
Was thinking along these lines for table setup:
Table 1 = t_EmplInfo / This would be extracted using a Distinct Query against the main table, then using a Make-Table query to create the new EmplInfo table.
Fields
RecID
BUserID
PERN
EmplName
ORG
Table 2 = t_eBizLines
Fields
These would have all of the remaining Time and Billing fields. Wondering how best to relate this to the EmplInfo table.
Table 3 = t_Errors_and_Info / Need to relate this to the table t_eBizLines
Fields
ErrorTypes
Info
I apologize for such a lenghtly post. Thanking one and all for any assistance you may provide.
Regards,
Bob in Indy