Invoice Tracking

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a database that I use to track invoices and credit card charges. For
each transaction, a cost code is assigned (for example: general office
supplies - 690, outside contract services - 526, etc...) I am going to create
a table that lists our budgeted amount for each cost code. I want to be able
to run a report which shows each cost code, the budgeted amount, how much we
have spent between a given time frame, and how much we have left. How would I
be able to do that?
 
Overlapping budget funds & the like are not considered below:

With your tblCostCode as the one side you'll need tblExpense on the
many side.

tblCostCode will have an entry for each code and a start date and a
budgeted amount.

records in tblExpense will refer back to the cost code in the first
table and will have a date and expense type/category and an amount.
subtracting all of the amounts for this cost code from its budgeted
amount will show the difference between budgeted and expended.

HTH
 
Thank you!

Larry Daugherty said:
Overlapping budget funds & the like are not considered below:

With your tblCostCode as the one side you'll need tblExpense on the
many side.

tblCostCode will have an entry for each code and a start date and a
budgeted amount.

records in tblExpense will refer back to the cost code in the first
table and will have a date and expense type/category and an amount.
subtracting all of the amounts for this cost code from its budgeted
amount will show the difference between budgeted and expended.

HTH
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top