+ Reply to Thread
Results 1 to 14 of 14

=today() ????

  1. #1
    Forum Contributor
    Join Date
    01-24-2013
    Location
    NY,NY
    MS-Off Ver
    MS 365
    Posts
    250

    =today() ????

    I was wondering what would the formula be if I wanted to incorporate a today formula and divide the amount of jobs open for the remaining days left in the month not including the weekends.
    So basically Open Jobs (divided by) Remaining Days left in the month. Example: for March I have 88 Open Jobs and there's only 14 days left in the month of March. How many Jobs will I have to do per day to complete all Open Jobs.
    Is there a was to incorporate a today formula so excel can count the remaining days automatically? And if so what would it be? Any advise will be extremely helpful!
    Last edited by thursday140; 03-11-2016 at 08:11 AM.

  2. #2
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,209

    Re: =today() ????

    This will give number of workdays (excluding Sat/Sun) left after (i.e. not including) TODAY() remaining in current month

    =NETWORKDAYS.INTL(TODAY(),EOMONTH(TODAY(),0),1)-1

  3. #3
    Forum Contributor
    Join Date
    01-24-2013
    Location
    NY,NY
    MS-Off Ver
    MS 365
    Posts
    250

    Re: =today() ????

    Quote Originally Posted by JohnTopley View Post
    This will give number of workdays (excluding Sat/Sun) left after (i.e. not including) TODAY() remaining in current month

    =NETWORKDAYS.INTL(TODAY(),EOMONTH(TODAY(),0),1)-1
    That was so awesome! Thank you so much, how would I incorporate a division formula? I want to divide the the 88 open jobs with the remaining working days available.

  4. #4
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,209

    Re: =today() ????

    =A2/NETWORKDAYS.INTL(TODAY(),EOMONTH(TODAY(),0),1)-1

    where A2 is your "Open Jobs" Value i.e. contains 88

  5. #5
    Forum Guru Jonmo1's Avatar
    Join Date
    03-08-2013
    Location
    Bryan, TX
    MS-Off Ver
    Excel 2010
    Posts
    9,763

    Re: =today() ????

    I would recommend NOT subtracting 1 from the result of NetworkDays.
    You could end up with erroneous results if the Start/End Dates happen to fall on a weekend/holiday.
    Instead, Add 1 to the Start Date OR Subtract 1 from the End Date, depending on which one you want excluded from your count.

    =NETWORKDAYS.INTL(TODAY()+1,EOMONTH(TODAY(),0),1)
    or
    =NETWORKDAYS.INTL(TODAY(),EOMONTH(TODAY()-1,0),1)


    Also, if you do stick with subtracting 1 from the result of networkdays
    =A2/NETWORKDAYS.INTL(TODAY(),EOMONTH(TODAY(),0),1)-1

    You need parens around the networkdays-1 part
    Otherwise it does A2/Networkdays First, THEN subtracts 1 from that result.

    =A2/(NETWORKDAYS.INTL(TODAY(),EOMONTH(TODAY(),0),1)-1)

  6. #6
    Forum Contributor
    Join Date
    01-24-2013
    Location
    NY,NY
    MS-Off Ver
    MS 365
    Posts
    250

    Re: =today() ????

    Quote Originally Posted by JohnTopley View Post
    This will give number of workdays (excluding Sat/Sun) left after (i.e. not including) TODAY() remaining in current month

    =NETWORKDAYS.INTL(TODAY(),EOMONTH(TODAY(),0),1)-1
    That was so awesome! Thank you so much, how would I incorporate a division formula? I want to divide the the 88 open jobs with the remaining working days available.

  7. #7
    Forum Contributor
    Join Date
    01-06-2015
    Location
    Huntsville, AL
    MS-Off Ver
    Office 365
    Posts
    185

    Re: =today() ????

    I believe what John is saying is Cell A2 is where you would have the remaining number of jobs for the month typed in. You would simply change A2 with whatever cell you place your total number of jobs located in.

  8. #8
    Forum Contributor
    Join Date
    01-24-2013
    Location
    NY,NY
    MS-Off Ver
    MS 365
    Posts
    250

    Re: =today() ????

    Quote Originally Posted by Jonmo1 View Post
    I would recommend NOT subtracting 1 from the result of NetworkDays.
    You could end up with erroneous results if the Start/End Dates happen to fall on a weekend/holiday.
    Instead, Add 1 to the Start Date OR Subtract 1 from the End Date, depending on which one you want excluded from your count.

    =NETWORKDAYS.INTL(TODAY()+1,EOMONTH(TODAY(),0),1)
    or
    =NETWORKDAYS.INTL(TODAY(),EOMONTH(TODAY()-1,0),1)


    Also, if you do stick with subtracting 1 from the result of networkdays
    =A2/NETWORKDAYS.INTL(TODAY(),EOMONTH(TODAY(),0),1)-1

    You need parens around the networkdays-1 part
    Otherwise it does A2/Networkdays First, THEN subtracts 1 from that result.

    =A2/(NETWORKDAYS.INTL(TODAY(),EOMONTH(TODAY(),0),1)-1)
    Since this has to be done manually on a month to month basis, is there a way to automate this process. Or perhaps a different formaula that can produce the same results 1 month in advance. SO i have an idea as to how many jobs I have to complete 1 month in advance?

  9. #9
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,209

    Re: =today() ????

    @Jonmo1: Thanks for the corrections - I certainly was not aware of the potential issue to NETWORDAYS.INTL.


    Re using this on a monthly basis (bearing in mind Jonmo1's advice)

    =A2/(NETWORKDAYS.INTL(StartDate,EOMONTH(Startdate,0),1)-1)

    where startdate in the first of the month e.e. if you want to prediction for April, then startdate = 01/04/2016 (dd/mm/yyyy)

    So if we put the date in B2

    =A2/(NETWORKDAYS.INTL(B2,EOMONTH(B2,0),1)-1)

    Make sense?

  10. #10
    Forum Guru Jonmo1's Avatar
    Join Date
    03-08-2013
    Location
    Bryan, TX
    MS-Off Ver
    Excel 2010
    Posts
    9,763

    Re: =today() ????

    You're still subtracting 1 from the result of networkdays.

    Try either
    =A2/(NETWORKDAYS.INTL(B2+1,EOMONTH(B2,0),1)) -> if Start date should be excluded from count
    or
    =A2/(NETWORKDAYS.INTL(B2,EOMONTH(B2,0)-1,1)) -> if End date should be excluded from count

    B2 = Start Date.

  11. #11
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,209

    Re: =today() ????

    More likely

    =A2/(NETWORKDAYS.INTL(B2,EOMONTH(B2,0),1)

    if planning for a future month as you would not exclude any working day ...

    But currently it omits holidays!

  12. #12
    Forum Contributor
    Join Date
    01-24-2013
    Location
    NY,NY
    MS-Off Ver
    MS 365
    Posts
    250

    Re: =today() ????

    Quote Originally Posted by JohnTopley View Post
    @Jonmo1: Thanks for the corrections - I certainly was not aware of the potential issue to NETWORDAYS.INTL.


    Re using this on a monthly basis (bearing in mind Jonmo1's advice)

    =A2/(NETWORKDAYS.INTL(StartDate,EOMONTH(Startdate,0),1)-1)

    where startdate in the first of the month e.e. if you want to prediction for April, then startdate = 01/04/2016 (dd/mm/yyyy)

    So if we put the date in B2

    =A2/(NETWORKDAYS.INTL(B2,EOMONTH(B2,0),1)-1)

    Make sense?
    Apologies if question I ask is novice. However, should I be entering the date in place of "B2", or does the formula automatically know B2 is the start date 01/04/16? Or are you saying to enter any Start Date I wish in place of B2, to calculate the amount of jobs I have for the month in question (which in this example it's April)?

  13. #13
    Forum Contributor
    Join Date
    01-24-2013
    Location
    NY,NY
    MS-Off Ver
    MS 365
    Posts
    250

    Re: =today() ????

    Quote Originally Posted by JohnTopley View Post
    More likely

    =A2/(NETWORKDAYS.INTL(B2,EOMONTH(B2,0),1)

    if planning for a future month as you would not exclude any working day ...

    But currently it omits holidays!
    Thank you so much for this formula. However am I entering a date in B2 or was that just an example as to what B2 represents?

  14. #14
    Forum Guru Jonmo1's Avatar
    Join Date
    03-08-2013
    Location
    Bryan, TX
    MS-Off Ver
    Excel 2010
    Posts
    9,763

    Re: =today() ????

    B2 is a cell where you enter a date, any date of your choice.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 10
    Last Post: 09-06-2023, 08:19 PM
  2. [SOLVED] countif using today() and today()-7
    By linabirrell in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 02-26-2016, 05:22 AM
  3. [SOLVED] Counting Tasks With Due Dates between TODAY and TODAY+7
    By Erik_with_a_K in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 04-29-2013, 09:00 AM
  4. condit. format: If date in cell = today, display "Today"
    By ratkins in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 02-14-2013, 01:33 PM
  5. Replace today() with a hardcoded value representing today in all tabs
    By Romanian37 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 01-23-2013, 07:03 AM
  6. AutoFilter for any cell between =today() and =today()+14??
    By kpratico in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-01-2010, 04:36 PM
  7. Replies: 3
    Last Post: 12-11-2007, 01:36 PM

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