+ Reply to Thread
Results 1 to 3 of 3

HELP - Number of items between dates

  1. #1
    Registered User
    Join Date
    03-02-2005
    Posts
    2

    HELP - Number of items between dates

    Ok here is my problem....

    I have a column of dates that I want to be able to report on. The date ranges are between 2002 and 2008. They are warranty expiration dates for servers.

    I need to be able to report on 3 items.

    1 - How many warranties have expired?
    2 - How many will expire between today and 60 days from now.
    3 - How many will expire in more than 60 days from now.

    Thanks for any help on this.

    Swervy

  2. #2
    Forum Expert
    Join Date
    06-18-2004
    Location
    Canada
    MS-Off Ver
    Office 2016
    Posts
    1,474
    Try the following...

    1 - How many warranties have expired?

    =COUNTIF(A1:A100,"<="&TODAY())

    2 - How many will expire between today and 60 days from now.

    =SUMPRODUCT(--(A1:A100>TODAY()),--(A1:A100<=TODAY()+60))

    3 - How many will expire in more than 60 days from now.

    =COUNTIF(A1:A100,">"&TODAY()+60)

    Hope this helps!

  3. #3
    Registered User
    Join Date
    03-02-2005
    Posts
    2
    Domenic,

    All 3 worked like a champ.

    I had actually figured out #1, and was close on #3, but number #2 was a complete mystery to me.

    Here is what my final formula ended up looking like...

    =SUMPRODUCT(--('Active Servers'!$AO$2:$AO$995>TODAY()),--('Active Servers'!$AO$2:$AO$995<=TODAY()+60))

    Thanks again for the quick response and the excel lent(ok a really bad pun) help with this.

    Swervy

+ 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