PC Review


Reply
Thread Tools Rate Thread

Categorize Income and Expenses?

 
 
=?Utf-8?B?Z2VlMTQ=?=
Guest
Posts: n/a
 
      6th Sep 2007
I have a checking account register, columns A, B, C, where DEP = deposit,
numbers are check numbers, and positive and negative amounts as shown below.

A B C

CHK# Category Amount

Dep Festival $30.05
1023 Paint -$14.00
1024 Chalk -$33.00
1025 Paint -$12.00
Dep Member $100.00
Dep Festival $44.00

I would like a report in another worksheet or just a reformat of the data
into 2 main categories of Income and Expenses and within each to sum (add)
each category . For example,

Income
Festival $77.05
Member $100.00


Expenses
Paint $26.00
Chalk $33.00


How can I do that?

Thank you,



 
Reply With Quote
 
 
 
 
=?Utf-8?B?SmltIFNrcnlkbGFr?=
Guest
Posts: n/a
 
      6th Sep 2007
Add column D with formulae along the lines of:

=if(a3="Dep","Income","Expense")

and a heading of "Type" (or any heading other than "CHK#","Category", or
"Amount"). Then select the entire range, including the row with headings and
execute a Data/Pivot Table command sequence.

It seems likely that you haven't used pivot tables before, so you may want
to read up on them before doing this. They'll be very helpful for you.

Best of luck.

Jim



"gee14" wrote:

> I have a checking account register, columns A, B, C, where DEP = deposit,
> numbers are check numbers, and positive and negative amounts as shown below.
>
> A B C
>
> CHK# Category Amount
>
> Dep Festival $30.05
> 1023 Paint -$14.00
> 1024 Chalk -$33.00
> 1025 Paint -$12.00
> Dep Member $100.00
> Dep Festival $44.00
>
> I would like a report in another worksheet or just a reformat of the data
> into 2 main categories of Income and Expenses and within each to sum (add)
> each category . For example,
>
> Income
> Festival $77.05
> Member $100.00
>
>
> Expenses
> Paint $26.00
> Chalk $33.00
>
>
> How can I do that?
>
> Thank you,
>
>
>

 
Reply With Quote
 
=?Utf-8?B?Z2VlMTQ=?=
Guest
Posts: n/a
 
      6th Sep 2007
Thank you, that worked pretty well. I have some beginning PivotTable
knowledge, so I did that part, what I didn't know was the intermediate step
of creating the new column to get the INCOME/EXPENSEd separated. The only
thing is that Expenses shows first alphabetically in the PivotTable and then
Income. Is there anyway to move Income to the top?

Thank you

"Jim Skrydlak" wrote:

> Add column D with formulae along the lines of:
>
> =if(a3="Dep","Income","Expense")
>
> and a heading of "Type" (or any heading other than "CHK#","Category", or
> "Amount"). Then select the entire range, including the row with headings and
> execute a Data/Pivot Table command sequence.
>
> It seems likely that you haven't used pivot tables before, so you may want
> to read up on them before doing this. They'll be very helpful for you.
>
> Best of luck.
>
> Jim
>
>
>
> "gee14" wrote:
>
> > I have a checking account register, columns A, B, C, where DEP = deposit,
> > numbers are check numbers, and positive and negative amounts as shown below.
> >
> > A B C
> >
> > CHK# Category Amount
> >
> > Dep Festival $30.05
> > 1023 Paint -$14.00
> > 1024 Chalk -$33.00
> > 1025 Paint -$12.00
> > Dep Member $100.00
> > Dep Festival $44.00
> >
> > I would like a report in another worksheet or just a reformat of the data
> > into 2 main categories of Income and Expenses and within each to sum (add)
> > each category . For example,
> >
> > Income
> > Festival $77.05
> > Member $100.00
> >
> >
> > Expenses
> > Paint $26.00
> > Chalk $33.00
> >
> >
> > How can I do that?
> >
> > Thank you,
> >
> >
> >

 
Reply With Quote
 
=?Utf-8?B?SmltIFNrcnlkbGFr?=
Guest
Posts: n/a
 
      6th Sep 2007
Right-click on the item that reflects both ("Type" in my example, I think),
then click on "Field Settings", then "Advanced". Select "Descending" under
"Autosort Options" then click "OK" a couple of times.

Glad that you already knew about pivot tables, and glad I could help.

Jim

"gee14" wrote:

> Thank you, that worked pretty well. I have some beginning PivotTable
> knowledge, so I did that part, what I didn't know was the intermediate step
> of creating the new column to get the INCOME/EXPENSEd separated. The only
> thing is that Expenses shows first alphabetically in the PivotTable and then
> Income. Is there anyway to move Income to the top?
>
> Thank you
>
> "Jim Skrydlak" wrote:
>
> > Add column D with formulae along the lines of:
> >
> > =if(a3="Dep","Income","Expense")
> >
> > and a heading of "Type" (or any heading other than "CHK#","Category", or
> > "Amount"). Then select the entire range, including the row with headings and
> > execute a Data/Pivot Table command sequence.
> >
> > It seems likely that you haven't used pivot tables before, so you may want
> > to read up on them before doing this. They'll be very helpful for you.
> >
> > Best of luck.
> >
> > Jim
> >
> >
> >
> > "gee14" wrote:
> >
> > > I have a checking account register, columns A, B, C, where DEP = deposit,
> > > numbers are check numbers, and positive and negative amounts as shown below.
> > >
> > > A B C
> > >
> > > CHK# Category Amount
> > >
> > > Dep Festival $30.05
> > > 1023 Paint -$14.00
> > > 1024 Chalk -$33.00
> > > 1025 Paint -$12.00
> > > Dep Member $100.00
> > > Dep Festival $44.00
> > >
> > > I would like a report in another worksheet or just a reformat of the data
> > > into 2 main categories of Income and Expenses and within each to sum (add)
> > > each category . For example,
> > >
> > > Income
> > > Festival $77.05
> > > Member $100.00
> > >
> > >
> > > Expenses
> > > Paint $26.00
> > > Chalk $33.00
> > >
> > >
> > > How can I do that?
> > >
> > > Thank you,
> > >
> > >
> > >

 
Reply With Quote
 
=?Utf-8?B?Z2VlMTQ=?=
Guest
Posts: n/a
 
      6th Sep 2007
Thank you, just perfect!

"Jim Skrydlak" wrote:

> Right-click on the item that reflects both ("Type" in my example, I think),
> then click on "Field Settings", then "Advanced". Select "Descending" under
> "Autosort Options" then click "OK" a couple of times.
>
> Glad that you already knew about pivot tables, and glad I could help.
>
> Jim
>
> "gee14" wrote:
>
> > Thank you, that worked pretty well. I have some beginning PivotTable
> > knowledge, so I did that part, what I didn't know was the intermediate step
> > of creating the new column to get the INCOME/EXPENSEd separated. The only
> > thing is that Expenses shows first alphabetically in the PivotTable and then
> > Income. Is there anyway to move Income to the top?
> >
> > Thank you
> >
> > "Jim Skrydlak" wrote:
> >
> > > Add column D with formulae along the lines of:
> > >
> > > =if(a3="Dep","Income","Expense")
> > >
> > > and a heading of "Type" (or any heading other than "CHK#","Category", or
> > > "Amount"). Then select the entire range, including the row with headings and
> > > execute a Data/Pivot Table command sequence.
> > >
> > > It seems likely that you haven't used pivot tables before, so you may want
> > > to read up on them before doing this. They'll be very helpful for you.
> > >
> > > Best of luck.
> > >
> > > Jim
> > >
> > >
> > >
> > > "gee14" wrote:
> > >
> > > > I have a checking account register, columns A, B, C, where DEP = deposit,
> > > > numbers are check numbers, and positive and negative amounts as shown below.
> > > >
> > > > A B C
> > > >
> > > > CHK# Category Amount
> > > >
> > > > Dep Festival $30.05
> > > > 1023 Paint -$14.00
> > > > 1024 Chalk -$33.00
> > > > 1025 Paint -$12.00
> > > > Dep Member $100.00
> > > > Dep Festival $44.00
> > > >
> > > > I would like a report in another worksheet or just a reformat of the data
> > > > into 2 main categories of Income and Expenses and within each to sum (add)
> > > > each category . For example,
> > > >
> > > > Income
> > > > Festival $77.05
> > > > Member $100.00
> > > >
> > > >
> > > > Expenses
> > > > Paint $26.00
> > > > Chalk $33.00
> > > >
> > > >
> > > > How can I do that?
> > > >
> > > > Thank you,
> > > >
> > > >
> > > >

 
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
I need a template for rental properties (income and expenses) =?Utf-8?B?Um9ja3kgZnJvbSBNYWluZQ==?= Microsoft Access Forms 1 12th Jun 2006 02:13 AM
how do i post and categorize expense and income? =?Utf-8?B?VGFtbXlD?= Microsoft Access Getting Started 1 5th Apr 2006 10:06 PM
Looking for sheet for expenses and income AA Arens Microsoft Excel Discussion 1 28th Sep 2005 04:41 PM
How best can I track rental income and expenses =?Utf-8?B?VG9t?= Microsoft Access Macros 1 10th Apr 2005 08:21 PM
income/expenses spreadsheet for small shop =?Utf-8?B?VHJpbXM=?= Microsoft Excel New Users 2 24th Oct 2004 05:45 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:14 PM.