View Single Post
  #2   Report Post  
PokerZan
 
Posts: n/a
Default


I'm assuming that you have a column of dates (daily) that you also want
to be able summarize for quarterly purposes in a Pivot Table or some
other format.

Probably the best way I have been able to come up with a solution in my
experience is this:

1. Create a helper row that gives you the month with the following
formula (this assumes that you have the daily date in one of the
columns of existing data):

=text(A2,"mmmm")

If A1 is the cell at the top of the column that has the date in it,
this formula will return a month name (i.e. September).

If you are going to want to look at quarterly data over a period of
several years, then you will also need a year column. Again a helper
row will allow you do this with the following formula:

=text(A2,"yyyy")

This will return the year from the date cell.

Now to my knowlegdge there is no formula for dertimining quarters, so I
would sort the data by month, then assign the proper quarter # to the
corresponding months.

This will allow you to do a pivot table on the quarters and only see
data for quarters.

If this isn't what you are looking for let me know a few more specifics
and I will see what I can do to help.

Pzan.


--
PokerZan
------------------------------------------------------------------------
PokerZan's Profile: http://www.excelforum.com/member.php...o&userid=23480
View this thread: http://www.excelforum.com/showthread...hreadid=465687