PC Review


Reply
Thread Tools Rate Thread

Budget Table

 
 
Jazz
Guest
Posts: n/a
 
      27th Dec 2009
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?

 
Reply With Quote
 
 
 
 
Steve
Guest
Posts: n/a
 
      27th Dec 2009
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?
>



 
Reply With Quote
 
Duane Hookom
Guest
Posts: n/a
 
      28th Dec 2009
First, I would remove all spaces from field names. The AmountSaved I expect
is the difference between the ProjectedCost and ActualCost so there is no
reason to create this field and/or save the value.

I use a naming convention that would create a table like:
tblExpenses
===============
expExpID
expExCID link to tblExpenseCategories.ecaExCID
expDate
expItem
expProjectedCost
expActualCost
expComments

tblExpenseCategories
==================
excExCID autonumber primary key
excTitle name of category like "Rent","Groceries","Entertainment", "Beer"
--
Duane Hookom
Microsoft Access MVP


"Jazz" wrote:

> 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?
>

 
Reply With Quote
 
Steve
Guest
Posts: n/a
 
      28th Dec 2009
I meant Projected Cost and Actual Cost not to have spaces! I also agree with
Duane that you don't need Amount Saved!

Steve

"Steve" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> 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?
>>

>
>



 
Reply With Quote
 
Jazz
Guest
Posts: n/a
 
      28th Dec 2009
Hi Duane,

This is fabulous advice. Thank you for your input. I may have questions
down the road but this will definitely help me to get started. Thanks a
million!

"Duane Hookom" wrote:

> First, I would remove all spaces from field names. The AmountSaved I expect
> is the difference between the ProjectedCost and ActualCost so there is no
> reason to create this field and/or save the value.
>
> I use a naming convention that would create a table like:
> tblExpenses
> ===============
> expExpID
> expExCID link to tblExpenseCategories.ecaExCID
> expDate
> expItem
> expProjectedCost
> expActualCost
> expComments
>
> tblExpenseCategories
> ==================
> excExCID autonumber primary key
> excTitle name of category like "Rent","Groceries","Entertainment", "Beer"
> --
> Duane Hookom
> Microsoft Access MVP
>
>
> "Jazz" wrote:
>
> > 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?
> >

 
Reply With Quote
 
Jazz
Guest
Posts: n/a
 
      28th Dec 2009
Very good advice as well. Thank you Steve, I value your contribution. I am
thankful for your help.

"Steve" wrote:

> I meant Projected Cost and Actual Cost not to have spaces! I also agree with
> Duane that you don't need Amount Saved!
>
> Steve
>
> "Steve" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
> > 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?
> >>

> >
> >

>
>
> .
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Pivot table to calculate variance showing budget and actual. YY san. Microsoft Excel Worksheet Functions 2 22nd Apr 2010 05:15 AM
Joining a Budget and Actual Table =?Utf-8?B?SmFtZXMgVA==?= Microsoft Access Queries 3 23rd Nov 2006 02:55 AM
how do i setup a home budget and office budget for payroll =?Utf-8?B?Q2VuY2U=?= Microsoft Word New Users 1 10th Dec 2004 06:56 PM
DEBITING BUDGET SPEND IN TABLE1 FROM BUDGET ALLOCATED IN TABLE 2 =?Utf-8?B?b3N1bGxpcGE=?= Microsoft Access Queries 1 28th Oct 2004 10:59 AM
using query and form to insert records in a budget table for users =?Utf-8?B?b3N1bGxpcGE=?= Microsoft Access Forms 1 25th Oct 2004 01:11 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:40 PM.