+ Reply to Thread
Results 1 to 6 of 6

Using Date Today and Date Needed please help.

  1. #1
    Registered User
    Join Date
    09-28-2012
    Location
    Hongkong
    MS-Off Ver
    Excel 2010
    Posts
    14

    Using Date Today and Date Needed please help.

    I used =today() formula but I need another cell that the date must be tomorrow.

    Example:

    A1= Date Printed

    B1=today() B1= Wednesday, October 10, 2012

    C1 = Date Needed ( Date needed here must be tommorrow)

    D1= Thursday, October 11, 2012

    if it is a Saturday then

    B1= Saturday, October 13, 2012

    then D1= Monday, October 15, 2012.

    What formula should I use ?
    Last edited by Raist; 10-09-2012 at 10:59 PM.

  2. #2
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: Using Date Today and Date Needed please help.

    for c1, use =today()+1

    for D1, to skip weekends, try this

    =IF(WEEKDAY(TODAY()+1,2)>7,TODAY()+3,TODAY()+1)

    its not weekend, so you may have to play with the +'s to make sure its working right
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  3. #3
    Forum Moderator alansidman's Avatar
    Join Date
    02-02-2010
    Location
    Steamboat Springs, CO
    MS-Off Ver
    MS Office 365 Version 2405 Win 11 Home 64 Bit
    Posts
    23,895

    Re: Using Date Today and Date Needed please help.

    c1 = today()+1

    D1 = if(weekday(today())=7,today()+2,today()+1)
    Alan עַם יִשְׂרָאֵל חַי


    Change an Ugly Report with Power Query
    Database Normalization
    Complete Guide to Power Query
    Man's Mind Stretched to New Dimensions Never Returns to Its Original Form

  4. #4
    Banned User!
    Join Date
    10-14-2006
    Posts
    1,211

    Re: Using Date Today and Date Needed please help.

    C1: =today()+1

    d1: =workday(today(),1)

  5. #5
    Registered User
    Join Date
    09-28-2012
    Location
    Hongkong
    MS-Off Ver
    Excel 2010
    Posts
    14

    Re: Using Date Today and Date Needed please help.

    Thanks for the replies, can I put the two formulas only in one cell B1?

    Example:

    A1=today() this will show the date today.
    B1= "Date tomorrow" if it is saturday today then it will put monday automatically?
    Last edited by Raist; 10-10-2012 at 01:45 AM.

  6. #6
    Registered User
    Join Date
    09-28-2012
    Location
    Hongkong
    MS-Off Ver
    Excel 2010
    Posts
    14

    Re: Using Date Today and Date Needed please help.

    Thanks to everyone. Problem solved. Thread closed.

+ 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