Please forgive me for this is a long request. I am designing a DB to capture expenses related to Federal Grants and to generate appropriate reports.
Each grant starts with a Notice of Grant Award (NOGA) which has 7 parts.
NOTE: Budget amount does not show the breakdown of percentage for Federal and Local money. In other words it shows 100% of the budget.
Types of expenses
Expense items vary and will need a separate table to accommodate future type of expenses.
Other Information
A grant may have more than one project
A project may be funded by more than one grant
A project manager may be managing more than one grant and / or more than one project
What is needed?
And then a macro will generate a form to request funding for these expenses that will include, Grant No, Fund No., Class, Dept ID, Project, Account etc and the amount expended for each line.
Here is an example
Let’s assume for all these Grants the Fed to Local ratio is 80 / 20
A form requesting fund for 80% will need to be generated from these expenses. Let's call it a DRAW Report
A report that will show all expenses for each project for each grant in 80 / 20 ratio. For example, for the first expense the detailed expense report will show Payroll was $1,000, (Fed 800 / Local 200), Inventory was $250 (Fed 200, / Local 50). Let’s call this Detailed Expense Report.
What I have done so far.
What I Need Help with
Any help is much appreciated. Thanks.
Each grant starts with a Notice of Grant Award (NOGA) which has 7 parts.
- Grant Number
- Grant Title
- Amendment Number
- Revision Number
- Fund Information
- Apportion Year (AY), could be a single year or multiple year.
- Grant Amount associated with each Apportion Year.
Grant amount has 3 parts:- Total amount
- Federal amount (FA)
- Local Amount (LA)
Percentage of FA & LA varies, 80%/20%, 95%/5%, 90%/10% or any other combination - Revenue Budget
- Broken down by a string of accounts that is comprised of Account No., Fund No., Class No., Dept ID, Project No.
- Current Budget Amount
- Change ( + / - ) Budget Amount
- Amended Budget Amount
- Expense Budget
- Same as 6 a. but also includes a field for Project Manager
NOTE: Budget amount does not show the breakdown of percentage for Federal and Local money. In other words it shows 100% of the budget.
Types of expenses
- Payroll expenses (26 pay period)
- Cost Allocation
- Marketing Expenses
- Preventive Maintenance
- Inventory
- Accounts Payables (with PO)
- Accounts Payables (without PO)
- Adjustments
Expense items vary and will need a separate table to accommodate future type of expenses.
Other Information
A grant may have more than one project
A project may be funded by more than one grant
A project manager may be managing more than one grant and / or more than one project
What is needed?
- Report showing expenses for each grant
- Report showing expenses for each project
- Report to request fund from authority for expenses incurred. This is critical. Somewhere I must store data to include the following information:
- Payroll expenses
- Marketing expenses
- Accounts Payables …etc.
And then a macro will generate a form to request funding for these expenses that will include, Grant No, Fund No., Class, Dept ID, Project, Account etc and the amount expended for each line.
Here is an example
Code:
Grant No. Fund No Program No Payroll Marketing Total Account No Dept No Project No A/P Inv 1 6540 871 999 099 65701 800 200 1000 1 6540 871 999 099 63350 50 50 100 2 4705 863 998 033 63740 1500 500 2000 3 4210 862 968 025 65701 300 50 150 500
A form requesting fund for 80% will need to be generated from these expenses. Let's call it a DRAW Report
Code:
Grant No. Total Previous New Balance Balance 1 880 5,000 4,120 2 1,600 15,000 13,400 3 400 3,000 2,600 Total 2,880 23,000 20,120
What I have done so far.
- Created separate tables to record, Accounts, Funds, Program, Department, Projects, Project Managers
- Created a table to record each NOGA that includes Grant Number, Title etc.
- Created 3 sub forms to record, 1) Fund Information (Apportion year, Fed amount, local amount and total amount), 2) Revenue budget, and 3) Expense Budget
- Created a form to record each NOGA that contains these 3 sub forms
What I Need Help with
- Establishing the relationships to make these tables work
- How do I make the Amendment No & Revision No as such that the latest version of the grant becomes available for all calculations and the previous versions stays at the back without being overwritten?
- How do I make the percentages an option when entering the fund information (item 5Bi, above)?
- How do I record various types of expenses? Do I not need a separate table for this?
Any help is much appreciated. Thanks.
Comment