Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default create expenditure report by quarter by category

Hi
I have a list of expenditures and want to create a report that wil total
them by category in each quarter.

So far my list has headings of:
Year Month Category Amount

I would appreciate suggestions on how to set this up please!
--
David
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default create expenditure report by quarter by category

I really need some help on this please! Have I explained what I want clearly
enough?
cheers
--
David


"Prospect" wrote:

Hi
I have a list of expenditures and want to create a report that wil total
them by category in each quarter.

So far my list has headings of:
Year Month Category Amount

I would appreciate suggestions on how to set this up please!
--
David

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,441
Default create expenditure report by quarter by category

David,

Have a field with the actual date (can be month/year, but it needs to be a date, not two columns one
with year and month) then use the date as a row field, and use the grouping option, choosing
quarters.

HTH,
Bernie
MS Excel MVP


"Prospect" wrote in message
...
Hi
I have a list of expenditures and want to create a report that wil total
them by category in each quarter.

So far my list has headings of:
Year Month Category Amount

I would appreciate suggestions on how to set this up please!
--
David



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default create expenditure report by quarter by category

sorry Bernie, not sure that I've understood you correctly.
Assuming I can change my month and year columns into a date (any suggestions
- can I use the concatenate function for this?), how do I change this to a
row field? Currently my rows are the expenditure items, e.g.
Year Month Category Amount
2007 Feb Equipment £100
2007 Feb Training £200

Also, how do I get them grouped by category in each quarter?

Thanks for you help, feeling a bit of a newbie!

cheers
David
--
David


"Bernie Deitrick" wrote:

David,

Have a field with the actual date (can be month/year, but it needs to be a date, not two columns one
with year and month) then use the date as a row field, and use the grouping option, choosing
quarters.

HTH,
Bernie
MS Excel MVP


"Prospect" wrote in message
...
Hi
I have a list of expenditures and want to create a report that wil total
them by category in each quarter.

So far my list has headings of:
Year Month Category Amount

I would appreciate suggestions on how to set this up please!
--
David




  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,441
Default create expenditure report by quarter by category

David,

I'm sorry that I wasn't clear: I had just answered a Pivot Table question, and sort of went into
your question with that mind set.

Let's say that your table is in columns A through D, with headers in row 1. In cell E1, enter
"Date". Then in cell E2, enter the formula

=DATEVALUE(B2 & " 1, " & A2)

and format that cell for any date option that you prefer, and copy that down column E to match your
data.

Then select the entire data table (column A through E, including all rows) and select Data / Pivot
Table... (the "Pivot Table" option wording depends on your version, but you get the idea) and
click "Finish".

That should create a new sheet with a pivot table template, and the Pivot Table Field List dropdown
showing. Drag the button from the dropdown with the "date" label to the row field area, and drag
the "category" button to the row field area, then drag your 'value' button to the data field area.
Right click the 'value' button and select sum. This will create a pivot table with the values
summed by category and date. Then right click the grey date button on the pivot table, choose
"Group" and select "Quarters" in the 'by' window.

For more on grouping in Pivot Tables, visit:

http://www.contextures.com/xlPivot07.html

HTH,
Bernie
MS Excel MVP


"Prospect" wrote in message
...
sorry Bernie, not sure that I've understood you correctly.
Assuming I can change my month and year columns into a date (any suggestions
- can I use the concatenate function for this?), how do I change this to a
row field? Currently my rows are the expenditure items, e.g.
Year Month Category Amount
2007 Feb Equipment £100
2007 Feb Training £200

Also, how do I get them grouped by category in each quarter?

Thanks for you help, feeling a bit of a newbie!

cheers
David
--
David


"Bernie Deitrick" wrote:

David,

Have a field with the actual date (can be month/year, but it needs to be a date, not two columns
one
with year and month) then use the date as a row field, and use the grouping option, choosing
quarters.

HTH,
Bernie
MS Excel MVP


"Prospect" wrote in message
...
Hi
I have a list of expenditures and want to create a report that wil total
them by category in each quarter.

So far my list has headings of:
Year Month Category Amount

I would appreciate suggestions on how to set this up please!
--
David








  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default create expenditure report by quarter by category

Thanks very much, Bernie, that sounds reasonably clear - I'll give it go!
--
David


"Bernie Deitrick" wrote:

David,

I'm sorry that I wasn't clear: I had just answered a Pivot Table question, and sort of went into
your question with that mind set.

Let's say that your table is in columns A through D, with headers in row 1. In cell E1, enter
"Date". Then in cell E2, enter the formula

=DATEVALUE(B2 & " 1, " & A2)

and format that cell for any date option that you prefer, and copy that down column E to match your
data.

Then select the entire data table (column A through E, including all rows) and select Data / Pivot
Table... (the "Pivot Table" option wording depends on your version, but you get the idea) and
click "Finish".

That should create a new sheet with a pivot table template, and the Pivot Table Field List dropdown
showing. Drag the button from the dropdown with the "date" label to the row field area, and drag
the "category" button to the row field area, then drag your 'value' button to the data field area.
Right click the 'value' button and select sum. This will create a pivot table with the values
summed by category and date. Then right click the grey date button on the pivot table, choose
"Group" and select "Quarters" in the 'by' window.

For more on grouping in Pivot Tables, visit:

http://www.contextures.com/xlPivot07.html

HTH,
Bernie
MS Excel MVP



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 281
Default create expenditure report by quarter by category

Try this:

=SUMPRODUCT(--($A$1:$A$100=2007),--($B$1:$B$100=1),--($B$11:$B$100<=3),$C$1:$C$100)

assumed the year information is in A1:A100 and the month information is in
B1:B100 and the amounts are in C1:C100

this is for the year 2007 but you can change to what ever year you want

this is for first quarter for other quarters you have to change =1 and <=3
to:
second quarter: =4 and <=6
third quarter: =7 and <=9
last quarter: =10 and <=12

Thanks,
--
Farhad Hodjat


"Prospect" wrote:

Hi
I have a list of expenditures and want to create a report that wil total
them by category in each quarter.

So far my list has headings of:
Year Month Category Amount

I would appreciate suggestions on how to set this up please!
--
David

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
how do i create a report from a matrix dunskii Excel Discussion (Misc queries) 0 September 19th 06 05:23 AM
How do I create a list of costs and get subtotals of each category Nadz Excel Discussion (Misc queries) 0 February 28th 06 09:47 AM
personal income and expenditure chart mikeyboy87 New Users to Excel 1 December 14th 05 03:35 PM
is there a template for an income and expenditure statement in Ex. soak93 Excel Discussion (Misc queries) 1 February 27th 05 11:55 PM
How to connect date with expenditure Prospero Excel Worksheet Functions 1 February 6th 05 09:22 PM


All times are GMT +1. The time now is 05:46 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"