+ Reply to Thread
Results 1 to 13 of 13

DAYS360

Hybrid View

  1. #1
    Jan Buckley
    Guest

    DAYS360

    I used DAYS360 to calculate the number of days between today (Jul 21) and 2
    NOV 2005 as follows: =DAYS360(TODAY(),"11/02/2005") and got 101. However,
    when I actually count the days on the calendar (Jul=10, Aug=31, Sep=30,
    Oct=31, Nov=1) I get 103. Can you tell me why there is a discrepancy? The
    only thing I could come up with is there are two holidays in that time frame
    - does function DAYS360 excude holidays? Thanks.

  2. #2
    JE McGimpsey
    Guest

    Re: DAYS360

    The DAYS360 is not exact because, as Help explains

    > Calculates the number of days from one date to another date based on
    > a 360-day year (twelve 30-day months), which is used in some


    To calculate the exact days, just use subtraction:

    =DATE(2005,11,2)-TODAY()

    and format as General or a Number.



    In article <03D09B92-3837-498E-8B61-1A94B725B472@microsoft.com>,
    "Jan Buckley" <JanBuckley@discussions.microsoft.com> wrote:

    > I used DAYS360 to calculate the number of days between today (Jul 21) and 2
    > NOV 2005 as follows: =DAYS360(TODAY(),"11/02/2005") and got 101. However,
    > when I actually count the days on the calendar (Jul=10, Aug=31, Sep=30,
    > Oct=31, Nov=1) I get 103. Can you tell me why there is a discrepancy? The
    > only thing I could come up with is there are two holidays in that time frame
    > - does function DAYS360 excude holidays? Thanks.


  3. #3
    Jan Buckley
    Guest

    Re: DAYS360

    How can I use this same formula, or another one if available, to calculate
    the days, and exclude the holidays. I tried to use workdays, but that
    excludes the weekends also. Thanks.

    "JE McGimpsey" wrote:

    > The DAYS360 is not exact because, as Help explains
    >
    > > Calculates the number of days from one date to another date based on
    > > a 360-day year (twelve 30-day months), which is used in some

    >
    > To calculate the exact days, just use subtraction:
    >
    > =DATE(2005,11,2)-TODAY()
    >
    > and format as General or a Number.
    >
    >
    >
    > In article <03D09B92-3837-498E-8B61-1A94B725B472@microsoft.com>,
    > "Jan Buckley" <JanBuckley@discussions.microsoft.com> wrote:
    >
    > > I used DAYS360 to calculate the number of days between today (Jul 21) and 2
    > > NOV 2005 as follows: =DAYS360(TODAY(),"11/02/2005") and got 101. However,
    > > when I actually count the days on the calendar (Jul=10, Aug=31, Sep=30,
    > > Oct=31, Nov=1) I get 103. Can you tell me why there is a discrepancy? The
    > > only thing I could come up with is there are two holidays in that time frame
    > > - does function DAYS360 excude holidays? Thanks.

    >


  4. #4
    JE McGimpsey
    Guest

    Re: DAYS360

    One way, put the holidays in a column. Name it, say, "holidays". Assume
    A1 contains your end date. Then

    =A1-TODAY()-SUMPRODUCT(--(holidays>=TODAY()),--(holidays<=A1))




    In article <BFCE122A-B895-440F-B1F3-2F0BD5510AB6@microsoft.com>,
    "Jan Buckley" <JanBuckley@discussions.microsoft.com> wrote:

    > How can I use this same formula, or another one if available, to calculate
    > the days, and exclude the holidays. I tried to use workdays, but that
    > excludes the weekends also. Thanks.


  5. #5
    JE McGimpsey
    Guest

    Re: DAYS360

    One way, put the holidays in a column. Name it, say, "holidays". Assume
    A1 contains your end date. Then

    =A1-TODAY()-SUMPRODUCT(--(holidays>=TODAY()),--(holidays<=A1))




    In article <BFCE122A-B895-440F-B1F3-2F0BD5510AB6@microsoft.com>,
    "Jan Buckley" <JanBuckley@discussions.microsoft.com> wrote:

    > How can I use this same formula, or another one if available, to calculate
    > the days, and exclude the holidays. I tried to use workdays, but that
    > excludes the weekends also. Thanks.


  6. #6
    JE McGimpsey
    Guest

    Re: DAYS360

    One way, put the holidays in a column. Name it, say, "holidays". Assume
    A1 contains your end date. Then

    =A1-TODAY()-SUMPRODUCT(--(holidays>=TODAY()),--(holidays<=A1))




    In article <BFCE122A-B895-440F-B1F3-2F0BD5510AB6@microsoft.com>,
    "Jan Buckley" <JanBuckley@discussions.microsoft.com> wrote:

    > How can I use this same formula, or another one if available, to calculate
    > the days, and exclude the holidays. I tried to use workdays, but that
    > excludes the weekends also. Thanks.


  7. #7
    JE McGimpsey
    Guest

    Re: DAYS360

    One way, put the holidays in a column. Name it, say, "holidays". Assume
    A1 contains your end date. Then

    =A1-TODAY()-SUMPRODUCT(--(holidays>=TODAY()),--(holidays<=A1))




    In article <BFCE122A-B895-440F-B1F3-2F0BD5510AB6@microsoft.com>,
    "Jan Buckley" <JanBuckley@discussions.microsoft.com> wrote:

    > How can I use this same formula, or another one if available, to calculate
    > the days, and exclude the holidays. I tried to use workdays, but that
    > excludes the weekends also. Thanks.


  8. #8
    Jan Buckley
    Guest

    Re: DAYS360

    How can I use this same formula, or another one if available, to calculate
    the days, and exclude the holidays. I tried to use workdays, but that
    excludes the weekends also. Thanks.

    "JE McGimpsey" wrote:

    > The DAYS360 is not exact because, as Help explains
    >
    > > Calculates the number of days from one date to another date based on
    > > a 360-day year (twelve 30-day months), which is used in some

    >
    > To calculate the exact days, just use subtraction:
    >
    > =DATE(2005,11,2)-TODAY()
    >
    > and format as General or a Number.
    >
    >
    >
    > In article <03D09B92-3837-498E-8B61-1A94B725B472@microsoft.com>,
    > "Jan Buckley" <JanBuckley@discussions.microsoft.com> wrote:
    >
    > > I used DAYS360 to calculate the number of days between today (Jul 21) and 2
    > > NOV 2005 as follows: =DAYS360(TODAY(),"11/02/2005") and got 101. However,
    > > when I actually count the days on the calendar (Jul=10, Aug=31, Sep=30,
    > > Oct=31, Nov=1) I get 103. Can you tell me why there is a discrepancy? The
    > > only thing I could come up with is there are two holidays in that time frame
    > > - does function DAYS360 excude holidays? Thanks.

    >


  9. #9
    Jan Buckley
    Guest

    Re: DAYS360

    How can I use this same formula, or another one if available, to calculate
    the days, and exclude the holidays. I tried to use workdays, but that
    excludes the weekends also. Thanks.

    "JE McGimpsey" wrote:

    > The DAYS360 is not exact because, as Help explains
    >
    > > Calculates the number of days from one date to another date based on
    > > a 360-day year (twelve 30-day months), which is used in some

    >
    > To calculate the exact days, just use subtraction:
    >
    > =DATE(2005,11,2)-TODAY()
    >
    > and format as General or a Number.
    >
    >
    >
    > In article <03D09B92-3837-498E-8B61-1A94B725B472@microsoft.com>,
    > "Jan Buckley" <JanBuckley@discussions.microsoft.com> wrote:
    >
    > > I used DAYS360 to calculate the number of days between today (Jul 21) and 2
    > > NOV 2005 as follows: =DAYS360(TODAY(),"11/02/2005") and got 101. However,
    > > when I actually count the days on the calendar (Jul=10, Aug=31, Sep=30,
    > > Oct=31, Nov=1) I get 103. Can you tell me why there is a discrepancy? The
    > > only thing I could come up with is there are two holidays in that time frame
    > > - does function DAYS360 excude holidays? Thanks.

    >


  10. #10
    Jan Buckley
    Guest

    Re: DAYS360

    How can I use this same formula, or another one if available, to calculate
    the days, and exclude the holidays. I tried to use workdays, but that
    excludes the weekends also. Thanks.

    "JE McGimpsey" wrote:

    > The DAYS360 is not exact because, as Help explains
    >
    > > Calculates the number of days from one date to another date based on
    > > a 360-day year (twelve 30-day months), which is used in some

    >
    > To calculate the exact days, just use subtraction:
    >
    > =DATE(2005,11,2)-TODAY()
    >
    > and format as General or a Number.
    >
    >
    >
    > In article <03D09B92-3837-498E-8B61-1A94B725B472@microsoft.com>,
    > "Jan Buckley" <JanBuckley@discussions.microsoft.com> wrote:
    >
    > > I used DAYS360 to calculate the number of days between today (Jul 21) and 2
    > > NOV 2005 as follows: =DAYS360(TODAY(),"11/02/2005") and got 101. However,
    > > when I actually count the days on the calendar (Jul=10, Aug=31, Sep=30,
    > > Oct=31, Nov=1) I get 103. Can you tell me why there is a discrepancy? The
    > > only thing I could come up with is there are two holidays in that time frame
    > > - does function DAYS360 excude holidays? Thanks.

    >


  11. #11
    JE McGimpsey
    Guest

    Re: DAYS360

    The DAYS360 is not exact because, as Help explains

    > Calculates the number of days from one date to another date based on
    > a 360-day year (twelve 30-day months), which is used in some


    To calculate the exact days, just use subtraction:

    =DATE(2005,11,2)-TODAY()

    and format as General or a Number.



    In article <03D09B92-3837-498E-8B61-1A94B725B472@microsoft.com>,
    "Jan Buckley" <JanBuckley@discussions.microsoft.com> wrote:

    > I used DAYS360 to calculate the number of days between today (Jul 21) and 2
    > NOV 2005 as follows: =DAYS360(TODAY(),"11/02/2005") and got 101. However,
    > when I actually count the days on the calendar (Jul=10, Aug=31, Sep=30,
    > Oct=31, Nov=1) I get 103. Can you tell me why there is a discrepancy? The
    > only thing I could come up with is there are two holidays in that time frame
    > - does function DAYS360 excude holidays? Thanks.


  12. #12
    JE McGimpsey
    Guest

    Re: DAYS360

    The DAYS360 is not exact because, as Help explains

    > Calculates the number of days from one date to another date based on
    > a 360-day year (twelve 30-day months), which is used in some


    To calculate the exact days, just use subtraction:

    =DATE(2005,11,2)-TODAY()

    and format as General or a Number.



    In article <03D09B92-3837-498E-8B61-1A94B725B472@microsoft.com>,
    "Jan Buckley" <JanBuckley@discussions.microsoft.com> wrote:

    > I used DAYS360 to calculate the number of days between today (Jul 21) and 2
    > NOV 2005 as follows: =DAYS360(TODAY(),"11/02/2005") and got 101. However,
    > when I actually count the days on the calendar (Jul=10, Aug=31, Sep=30,
    > Oct=31, Nov=1) I get 103. Can you tell me why there is a discrepancy? The
    > only thing I could come up with is there are two holidays in that time frame
    > - does function DAYS360 excude holidays? Thanks.


  13. #13
    JE McGimpsey
    Guest

    Re: DAYS360

    The DAYS360 is not exact because, as Help explains

    > Calculates the number of days from one date to another date based on
    > a 360-day year (twelve 30-day months), which is used in some


    To calculate the exact days, just use subtraction:

    =DATE(2005,11,2)-TODAY()

    and format as General or a Number.



    In article <03D09B92-3837-498E-8B61-1A94B725B472@microsoft.com>,
    "Jan Buckley" <JanBuckley@discussions.microsoft.com> wrote:

    > I used DAYS360 to calculate the number of days between today (Jul 21) and 2
    > NOV 2005 as follows: =DAYS360(TODAY(),"11/02/2005") and got 101. However,
    > when I actually count the days on the calendar (Jul=10, Aug=31, Sep=30,
    > Oct=31, Nov=1) I get 103. Can you tell me why there is a discrepancy? The
    > only thing I could come up with is there are two holidays in that time frame
    > - does function DAYS360 excude holidays? Thanks.


+ 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