+ Reply to Thread
Results 1 to 3 of 3

If Statement with today's date minus due date for a delay calculation

  1. #1
    Registered User
    Join Date
    03-24-2012
    Location
    the internets
    MS-Off Ver
    Excel 2008
    Posts
    2

    If Statement with today's date minus due date for a delay calculation

    Hello all,

    I need your help with an IF Statement to show delays in number of days. What I have so far-

    =IF(F2="Complete","None",IF(F2="In Progress", "InProgressStatus", IF(F2="On Hold", "On HoldStatus", IF(F2="Not Started", "NotStartedStatus", IF(F2="Not Required", "")))))

    What I want to happen is when F2=In Progress, excel goes takes the current date, subtracts the due date (given in a cell) and displays a number in days that represents the delay.


    =DAYS360(>>DueDateCell<<,TODAY()) works in a separate cell but not in the statement.


    Does that make sense? TIA

  2. #2
    Forum Expert Ace_XL's Avatar
    Join Date
    06-04-2012
    Location
    UAE
    MS-Off Ver
    2016
    Posts
    6,074

    Re: If Statement with today's date minus due date for a delay calculation

    Try

    =IF(F2="Complete","None",IF(F2="In Progress",DAYS360(>>DueDateCell<<,TODAY()), IF(F2="On Hold", "On HoldStatus", IF(F2="Not Started", "NotStartedStatus", IF(F2="Not Required", "")))))

    This will replace the "InProgressStatus" to the delay in days
    Life's a spreadsheet, Excel!
    Say thanks, Click *

  3. #3
    Registered User
    Join Date
    03-24-2012
    Location
    the internets
    MS-Off Ver
    Excel 2008
    Posts
    2

    Re: If Statement with today's date minus due date for a delay calculation

    Awesome, it works. I had the parenthesis in the wrong place on the Days360 formula.

+ 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