I am working on a DB to record expenses related to various grants. To record Payroll expenses I created tblPayroll with these fields:
Each pay period payroll data is downloaded from the server and dumped into an excel file. This spreadsheet has the following info:
Now if I were to append data to tblPayroll each pay period, what will be the best way to do it? Obviously I don’t want to fill in the other information (that are missing from the spreadsheet) manually. Any guidance will be much appreciated. Thanks.
Code:
PayrollID – auto / PK ECHOID – Number FK (tied to tblECHO) PayrollNo – Text PayrollDt – Date/ Time AccountID – Number FK (tied to tblAccounts) FundID – Number FK (tied to tblGrantFunds) OrgID – Number FK (tied to tblOrg) ProgramID – Number FK (tied to tblProgram) SubClassID – Number FK (tied to tblSubClass) ProjectID – Number FK (tied to tblProject) PayAmount – Currency
Account
Fund
Org
Program
Sub Class
Project
Amount
Fund
Org
Program
Sub Class
Project
Amount
Now if I were to append data to tblPayroll each pay period, what will be the best way to do it? Obviously I don’t want to fill in the other information (that are missing from the spreadsheet) manually. Any guidance will be much appreciated. Thanks.
Comment