+ Reply to Thread
Results 1 to 13 of 13

Creating an IF formulae to show if something is current or late

  1. #1
    Registered User
    Join Date
    08-10-2015
    Location
    California, USA
    MS-Off Ver
    2013
    Posts
    10

    Creating an IF formulae to show if something is current or late

    Hi all,

    If possible, I would like for column D to display the following information. Sorry the attachment wasn't working for me


    A B C D
    1 Time Rcvd Time Released 1day/ 2day
    2 8/20/2015 14:29 8/21/2015 16:43 1 day
    3 8/21/2015 8:00 8/23/2015 8:00 2 day
    4 8/20/2015 14:29 8/22/2015 16:43 1 day
    5 8/21/2015 8:00 8/24/2015 8:00 2 day


    I would like for column D to display the phrase “Current” or Late” depending on if the file went past it’s due date.

    For example, Row 2 and 3 should both show that the item is “Current” because they have not exceeding their due date for when the item was released. Row 2 has a specified due date of 1day which was met. Row 3 had a specified due date of 2days which was met.

    Row 4 and 5 however should display the phrase “Late” because they both went past their specified due date. Row 4 had a 1day turn time but it took 2 days. Row 5 had a 2 day turn time and it took 3 days.

    I am only working with either a 1day or 2day turn time to determine if it is late or not if that helps.

  2. #2
    Forum Expert daffodil11's Avatar
    Join Date
    07-11-2013
    Location
    Phoenixville, PA
    MS-Off Ver
    MS Office 2016
    Posts
    4,465

    Re: Creating an IF formulae to show if something is current or late

    How is the first record current? 8/20/15 14:29 + 1 day = 8/21/15 14:29, which falls prior to the Released date and time.

    Perhaps:

    Please Login or Register  to view this content.
    Last edited by daffodil11; 09-23-2015 at 05:53 PM.
    Make Mom proud: Add to my reputation if I helped out!

    Make the Moderators happy: Mark the Thread as Solved if your question was answered!

  3. #3
    Valued Forum Contributor
    Join Date
    05-13-2010
    Location
    Belo Horizonte, Brazil
    MS-Off Ver
    Excel 2003; 2007
    Posts
    441

    Re: Creating an IF formulae to show if something is current or late

    Pizzy, Good evening.

    Try to use:
    Please Login or Register  to view this content.
    Is that what you're looking for?
    I hope it helps.
    ...If my answer helped you, Please, click on. * Add Reputation (at left)

    Best regards.
    Marc?lio Lob?o

  4. #4
    Registered User
    Join Date
    08-10-2015
    Location
    California, USA
    MS-Off Ver
    2013
    Posts
    10

    Re: Creating an IF formulae to show if something is current or late

    Thanks! I have used daffodil11's formula and it looks like it's what I'm looking for. Would you be able to have this only include business days so that weekends aren't being included in this?

    And I would only need it to reflect it if it if it goes into another whole day so the hours wouldn't really matter

    For example,
    8/20/15 14:29 + 1 day = 8/21/15 16:29 would be fine even though it is two hours later. However, if it was 8/22/15 then it would be late.

  5. #5
    Forum Expert daffodil11's Avatar
    Join Date
    07-11-2013
    Location
    Phoenixville, PA
    MS-Off Ver
    MS Office 2016
    Posts
    4,465

    Re: Creating an IF formulae to show if something is current or late

    Now you're talking about WORKDAYS and NETWORKDAYS. I'll see what I can glean from the interwebs. Gonna get complicated.


    Just for the sake of clarity: If you only care about business days, why are some of the release dates on the weekend?


    Line 5: 8/21/2015 8:00 8/24/2015 8:00 2 day - Shouldn't this be on time?

    This was received on Friday, had a 2 day turnaround, was released on Monday which is only 1 business day later. On Wednesday 8/26 this would be late.
    Last edited by daffodil11; 09-24-2015 at 03:27 PM.

  6. #6
    Registered User
    Join Date
    08-10-2015
    Location
    California, USA
    MS-Off Ver
    2013
    Posts
    10

    Re: Creating an IF formulae to show if something is current or late

    Sorry the release date on the weekend was an accident and yes you are correct for line 5. It should actually be on time.

  7. #7
    Forum Expert daffodil11's Avatar
    Join Date
    07-11-2013
    Location
    Phoenixville, PA
    MS-Off Ver
    MS Office 2016
    Posts
    4,465

    Re: Creating an IF formulae to show if something is current or late

    How about:

    =NETWORKDAYS(A1,B1)<NETWORKDAYS(A1,WORKDAY(A1,LEFT(C1))) and copy down

  8. #8
    Registered User
    Join Date
    08-10-2015
    Location
    California, USA
    MS-Off Ver
    2013
    Posts
    10

    Re: Creating an IF formulae to show if something is current or late

    Hi daffodil11,

    The colums now say #Value!

  9. #9
    Forum Expert daffodil11's Avatar
    Join Date
    07-11-2013
    Location
    Phoenixville, PA
    MS-Off Ver
    MS Office 2016
    Posts
    4,465

    Re: Creating an IF formulae to show if something is current or late

    Attach a sample workbook. Make sure there is just enough data to demonstrate your need. Include a BEFORE sheet and an AFTER sheet in the workbook if needed to show the process you're trying to complete or automate. Make sure your desired results are shown, mock them up manually if necessary.

    Remember to desensitize the data.

    Click on GO ADVANCED and use the paperclip icon to open the upload window.

    View Pic


    Without an example of what you're working with, I'll just be throwing a dart at the wall.

  10. #10
    Registered User
    Join Date
    08-10-2015
    Location
    California, USA
    MS-Off Ver
    2013
    Posts
    10

    Re: Creating an IF formulae to show if something is current or late

    This computer isn't allowing me to attach it. The screen just freezes for some reason when I try. I will do it on another computer later on today

  11. #11
    Forum Expert daffodil11's Avatar
    Join Date
    07-11-2013
    Location
    Phoenixville, PA
    MS-Off Ver
    MS Office 2016
    Posts
    4,465

    Re: Creating an IF formulae to show if something is current or late

    Click the Simple version. I've never had success without Simple Upload.

    That's my advices.

  12. #12
    Registered User
    Join Date
    08-10-2015
    Location
    California, USA
    MS-Off Ver
    2013
    Posts
    10

    Re: Creating an IF formulae to show if something is current or late

    Book2.xlsx

    Ok I think I finally got it.

  13. #13
    Forum Expert daffodil11's Avatar
    Join Date
    07-11-2013
    Location
    Phoenixville, PA
    MS-Off Ver
    MS Office 2016
    Posts
    4,465

    Re: Creating an IF formulae to show if something is current or late

    I had success with =IF(NETWORKDAYS(B2,C2)-1<NETWORKDAYS(B2,WORKDAY(B2,LEFT(D2))),"Current","Late")

+ 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. [SOLVED] Require Help creating two formulae (3 vertical criteria 1 horizontal)
    By Narrov in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 09-08-2015, 12:35 PM
  2. Replies: 4
    Last Post: 04-08-2014, 05:42 PM
  3. Replies: 0
    Last Post: 05-07-2013, 05:19 PM
  4. Replies: 5
    Last Post: 01-19-2009, 12:23 PM
  5. Creating formulae to work out US withholding tax?
    By L_Nicholson in forum Excel General
    Replies: 4
    Last Post: 07-23-2008, 09:03 PM
  6. Replies: 2
    Last Post: 08-22-2006, 08:40 PM
  7. [SOLVED] Need a function or formulae that will return the current date + 1
    By scott56hannah in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 07-27-2006, 07:05 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