Hello Jazz,
Consider adding an expense category table. You probably spend your money
repeatedly on many of the same things such as electric, gas, telephone,
gasoline, etc so consider adding an expense item table. You also might
consider having an expense table and an expense detail table. With this in
mind you would have the following tables design:
TblExpenseCategory
ExpenseCategoryID
ExpenseCategory
TblExpenseItem
ExpenseItemID
ExpenseCategoryID
ExpenseItem
TblExpense
ExpenseID
ExpenseDate
Comments
TblExpenseDetail
ExpenseDetailID
ExpenseID
ExpenseItemID
Projected Cost
Actual Cost
Amount Saved
Steve
(E-Mail Removed)
"Jazz" <(E-Mail Removed)> wrote in message
news:8E948DBC-C44D-4DE5-9D6E-(E-Mail Removed)...
>I am creating a database to track what I spend my money on. I am planning
>to
> include the following fields in my table.
>
> Expense ID
> Expense Category
> Purchase date
> Expense Item Description
> Projected Cost
> Actual Cost
> Amount Saved
> Comments
>
> Considering my intention to track what I spend my money on,what do you
> think
> of my table design? Would you recommend different field names, additional
> field names, or keep the ones I have?
>