G
Guest
I append about 300,000 records a day of operational data into an Access
database from a large repository. The operational data consists of workers in
the field inputing audit information into a PDA. When they complete an audit
and send it in, there is a time stamp and audit number associated with the
information. One of the things I need to find out with this data is how much
time there is from audit to audit. What I am currently doing is sorting the
table (300,000 records) in a certain order (emp_num, audit_num, complete_tm)
and then throwing 50,000 records at a time into Excel and calculaing the time
from one audit to another. I then paste 50,000 records at a time into another
table.
As an alternative I would think I could have a function that opens the
recordset of the table and does that calculation in a field I added to the
table. Any ideas, suggestions, or sample code would be greatly appreciated.
tbl_AuditData
Date, District, Emp_Num, Audit_Type, Score, Audit_Num, Audit_Time
database from a large repository. The operational data consists of workers in
the field inputing audit information into a PDA. When they complete an audit
and send it in, there is a time stamp and audit number associated with the
information. One of the things I need to find out with this data is how much
time there is from audit to audit. What I am currently doing is sorting the
table (300,000 records) in a certain order (emp_num, audit_num, complete_tm)
and then throwing 50,000 records at a time into Excel and calculaing the time
from one audit to another. I then paste 50,000 records at a time into another
table.
As an alternative I would think I could have a function that opens the
recordset of the table and does that calculation in a field I added to the
table. Any ideas, suggestions, or sample code would be greatly appreciated.
tbl_AuditData
Date, District, Emp_Num, Audit_Type, Score, Audit_Num, Audit_Time