+ Reply to Thread
Results 1 to 6 of 6

Time series with dates?

  1. #1
    Registered User
    Join Date
    08-26-2007
    Posts
    4

    Time series with dates?

    Hi All

    I have a dataset of customer numbers and their registration dates
    dates range from 2003 - current

    I need to break down the dates to calculate how many registrations per year/month/week and eventually graph this.

    Customer Number OPEN DATE
    999999999 20030429
    999999998 20030512


    Help? I have no idea where to start...

    Thanks.

  2. #2
    Forum Contributor corinereyes's Avatar
    Join Date
    12-02-2003
    Location
    Philippines
    MS-Off Ver
    MS Excel 2016
    Posts
    520
    Hi,

    You can use this function to convert this format --> 20030429 to a date. Try this: Put this on cell b1 20030429, then copy and paste this formula on c1

    =VALUE(LEFT(B1,4)&"/"&MID(B1,5,2)&"/"&RIGHT(B1,2))
    You can now use the =Year(), =Month(), =Day(), to extract the year/month/day of a date.

    Hope that helps.
    Corine

  3. #3
    Registered User
    Join Date
    08-26-2007
    Posts
    4
    thanks corine

    hmm i dont think thats quite what i'm looking for

    e.g
    Account Number OPEN DATE
    558788889 20030429
    558788889 20080512
    558788889 20030514
    333543543 20020519
    558788889 20030522
    456446464 20040529
    543543535 20030613
    543535465 20050618

    Ive sorted the data by date and i guess i could manually count how many registrations per year (problem is i have thousands of records)
    Ideally i'd like to have some data displaying the number of registrations per year, their decline/increase and then perhaps break down each year and see the monthly trend.

    Not quite sure which formula applies.
    Last edited by confuzed; 08-26-2007 at 10:17 AM.

  4. #4
    Forum Contributor
    Join Date
    07-05-2007
    Location
    Lexington, MA
    Posts
    302

    Analyzing the dates - A start

    The attached workbook is a start at analyzing your data. You might go further by defining a pivot table or filter.

    The months and weeks are cumulative, so that subtotals operate properly if they are considered as a continuous time series.

    Please Login or Register  to view this content.
    Attached Files Attached Files
    FrankBoston is the pen name for Andrew Garland, Lexington MA

  5. #5
    Forum Expert
    Join Date
    09-09-2005
    Location
    England
    MS-Off Ver
    2007
    Posts
    1,500
    Then from Frank's example look at countif or sumproduct, or create a pivot table to calculate your aggregation of the data

    regards

    Dav

  6. #6
    Registered User
    Join Date
    08-26-2007
    Posts
    4
    thanks alot guys.. appreciate it.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1