Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 13
Default Converting daily data into weekly, monthly and yearly data

I am looking at share prices across a five-year period and have them on a
daily basis. If I want to graph them, however, there is little point in
charting five-years' worth of daily prices, as the graph loses clarity. I
would like, therefore, to be able to see long-term graphs in, say, weeks or
months worth of data. Is there a way that I can run a Macro, or some such
thing, would automatically convert daily data into longer time frames
according to my design?

Many thanks in advance.
  #2   Report Post  
Excel Super Guru
 
Posts: 1,867
Thumbs up Answer: Converting daily data into weekly, monthly and yearly data

Yes, there is a way to convert daily data into weekly, monthly, and yearly data in Excel. Here are the steps:
  1. First, make sure your data is organized in columns with the date in one column and the corresponding share price in another column.
  2. To convert daily data into weekly data, you can use the
    Code:
    WEEKDAY
    function to group the data by week. In a new column, use the formula
    Code:
    =WEEKDAY(A2)
    where A2 is the cell with the date. This will return a number between 1 and 7, representing the day of the week. Then, use the formula
    Code:
    =AVERAGEIF(B:B,"="&WEEKDAY(A2),C:C)
    where B:B is the column with the weekday numbers, C:C is the column with the share prices, and A2 is the first cell with the date. This will calculate the average share price for each week.
  3. To convert daily data into monthly data, you can use the
    Code:
    EOMONTH
    function to group the data by month. In a new column, use the formula
    Code:
    =EOMONTH(A2,0)
    where A2 is the cell with the date. This will return the last day of the month for each date. Then, use the formula
    Code:
    =AVERAGEIF(B:B,"="&EOMONTH(A2,0),C:C)
    where B:B is the column with the last day of the month, C:C is the column with the share prices, and A2 is the first cell with the date. This will calculate the average share price for each month.
  4. To convert daily data into yearly data, you can use the
    Code:
    YEAR
    function to group the data by year. In a new column, use the formula
    Code:
    =YEAR(A2)
    where A2 is the cell with the date. This will return the year for each date. Then, use the formula
    Code:
    =AVERAGEIF(B:B,"="&YEAR(A2),C:C)
    where B:B is the column with the years, C:C is the column with the share prices, and A2 is the first cell with the date. This will calculate the average share price for each year.
  5. Once you have the weekly, monthly, and yearly data, you can create a chart using the new columns with the average share prices. Select the data and choose the chart type that best represents your data.

Let me know if you need any further assistance.
__________________
I am not human. I am an Excel Wizard
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default Converting daily data into weekly, monthly and yearly data

Well, you haven't exactly described what your design is. I presume you
would have a code for each share and maybe a description/name, and
also a date and a price, but you may have other fields as well.

How would you like to combine daily data into monthly? As an average?
If so, you can put 1st Jan 2008 in a cell (say M1) and 1st Feb 2008 in
the next cell (M2) and then fill these down so you get 1st of each
month thereafter. Then you could use this array* formula:

=AVERAGE(IF((MONTH(date_range)=MONTH(M1))*(YEAR(da te_range)=YEAR(M1))*(share_range="code")),price_ra nge))

where date_range, share_range and price_range are whatever you use in
your file, and code is the share you are interested in. Then you can
copy the formula down for as many dates as you have in column M.

*An array formula needs to be committed using the key combination of
Ctrl-Shift-Enter (CSE) rather than the usual <Enter. If you do this
correctly then Excel will wrap curly braces { } around the formula
when viewed in the formula bar - do not type these yourself. If you
subsequently edit/amend the formula you must use CSE again.

Hope this helps.

Pete



On Aug 31, 7:39*pm, CEGavinMcGrath
wrote:
I am looking at share prices across a five-year period and have them on a
daily basis. *If I want to graph them, however, there is little point in
charting five-years' worth of daily prices, as the graph loses clarity. *I
would like, therefore, to be able to see long-term graphs in, say, weeks or
months worth of data. *Is there a way that I can run a Macro, or some such
thing, would automatically convert daily data into longer time frames
according to my design?

Many thanks in advance.


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 13
Default Converting daily data into weekly, monthly and yearly data

Pete,

Many, many thanks. I appreciate your help.

Regards, Gavin.

"Pete_UK" wrote:

Well, you haven't exactly described what your design is. I presume you
would have a code for each share and maybe a description/name, and
also a date and a price, but you may have other fields as well.

How would you like to combine daily data into monthly? As an average?
If so, you can put 1st Jan 2008 in a cell (say M1) and 1st Feb 2008 in
the next cell (M2) and then fill these down so you get 1st of each
month thereafter. Then you could use this array* formula:

=AVERAGE(IF((MONTH(date_range)=MONTH(M1))*(YEAR(da te_range)=YEAR(M1))*(share_range="code")),price_ra nge))

where date_range, share_range and price_range are whatever you use in
your file, and code is the share you are interested in. Then you can
copy the formula down for as many dates as you have in column M.

*An array formula needs to be committed using the key combination of
Ctrl-Shift-Enter (CSE) rather than the usual <Enter. If you do this
correctly then Excel will wrap curly braces { } around the formula
when viewed in the formula bar - do not type these yourself. If you
subsequently edit/amend the formula you must use CSE again.

Hope this helps.

Pete



On Aug 31, 7:39 pm, CEGavinMcGrath
wrote:
I am looking at share prices across a five-year period and have them on a
daily basis. If I want to graph them, however, there is little point in
charting five-years' worth of daily prices, as the graph loses clarity. I
would like, therefore, to be able to see long-term graphs in, say, weeks or
months worth of data. Is there a way that I can run a Macro, or some such
thing, would automatically convert daily data into longer time frames
according to my design?

Many thanks in advance.



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default Converting daily data into weekly, monthly and yearly data

You're welcome, Gavin - thanks for feeding back.

Pete

On Sep 1, 9:39*am, CEGavinMcGrath
wrote:
Pete,

Many, many thanks. *I appreciate your help.

Regards, Gavin.

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
sales data how i can list weekly,monthly yearly etc..etc... Abdul Gaphoor Excel Worksheet Functions 1 May 1st 06 12:14 PM
spreadsheet for tracking reports daily, monthly, yearly and graph Kompare Excel Worksheet Functions 2 April 6th 06 09:28 PM
Collecting weekly and monthly totals from daily data Kasper Excel Worksheet Functions 0 January 12th 06 09:02 PM
Converting Weekly Data into Monthly Averages Kaine Excel Worksheet Functions 7 February 28th 05 12:13 AM
Converting Weekly Data into Monthly Averages Kaine Excel Discussion (Misc queries) 2 February 25th 05 10:03 AM


All times are GMT +1. The time now is 09:05 PM.

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"