theKruser
Registered User.
- Local time
- Today, 15:17
- Joined
- Aug 6, 2008
- Messages
- 122
I have a tbl (tblDATA_TRNG) with the following fields:
TRNGDATAID (PK)
TRNGID (FK)
DATE
SCORE
CODE
REMARKS
My situation: the data entry team will receive reports (Excel format) from supervisors which they will have to enter. The easiest way I can see is to have a tbl (tblIMPORT_TRNG) for the team to import directly into. They would then notify an administrator who would run an append query to append to tblDATA_TRNG.
The problem (as I see it): admins (currently just me) will be receiving numerous notifications per day with updates. I would like to find a way to automatically clear all data from tblIMPORT_TRNG upon completion of the append query to remove the possibility of appending duplicated data.
End state (as I would like it, anyway): trying to make this idiot-proof (yeah, I know...dream on dreamer!!) to where a member of the data entry team has only to hit a button on the swithboard, select the file to import and click the "do-it-to-it" button. The "do-it-to-it" button should import the data from the excel file to the appropriate tbl while simultaneuosly launching an e-mail to the admins with notification of data awating action. Once the data has been verified accurate, the admins should have to click a button that will run the append query then erase the contents of tblDATA_IMPORT.
I realize I might be asking for more than what is feasible. I have this sneaky feeling that the answer lies in VBA coding which I know nothing about. Any help would be greatly appreciated.
TRNGDATAID (PK)
TRNGID (FK)
DATE
SCORE
CODE
REMARKS
My situation: the data entry team will receive reports (Excel format) from supervisors which they will have to enter. The easiest way I can see is to have a tbl (tblIMPORT_TRNG) for the team to import directly into. They would then notify an administrator who would run an append query to append to tblDATA_TRNG.
The problem (as I see it): admins (currently just me) will be receiving numerous notifications per day with updates. I would like to find a way to automatically clear all data from tblIMPORT_TRNG upon completion of the append query to remove the possibility of appending duplicated data.
End state (as I would like it, anyway): trying to make this idiot-proof (yeah, I know...dream on dreamer!!) to where a member of the data entry team has only to hit a button on the swithboard, select the file to import and click the "do-it-to-it" button. The "do-it-to-it" button should import the data from the excel file to the appropriate tbl while simultaneuosly launching an e-mail to the admins with notification of data awating action. Once the data has been verified accurate, the admins should have to click a button that will run the append query then erase the contents of tblDATA_IMPORT.
I realize I might be asking for more than what is feasible. I have this sneaky feeling that the answer lies in VBA coding which I know nothing about. Any help would be greatly appreciated.