+ Reply to Thread
Results 1 to 3 of 3

[SOLVED] Work Out If Finish Date/Time is Late - Excel 2003

  1. #1
    Registered User
    Join Date
    05-27-2008
    Posts
    25

    Unhappy [SOLVED] Work Out If Finish Date/Time is Late - Excel 2003

    Apologies if this is covered elsewhere - I've searched but can't find anything that does exactly what I'm trying to do.

    I have two columns - DUE_DATE and DATE_FINISHED. Each cell (or at least most cells, some are blank in the DATE_FINISHED column) contains data formatted as 'dd.mm.yyyy hh:mm' What I'm trying to work out is how to tell which records are late, i.e. if the DATE_FINISHED is greater than the DUE_DATE. I thought I'd be able to use a standard IF, but it doesn't seem to work. I could do it by looking, but I'm getting on a bit and my eyes aren't what they used to be! To be serious, if I get it right this time I might have to do it more often and with more records, so any time saving solution would be great! I've attached a workbook as an example.

    Dave
    Attached Files Attached Files

  2. #2
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,738

    Re: Work Out If Finish Date/Time is Late - Excel 2003

    Hello Dave, you can use this formula in C2 copied down the column

    =IF(AND(B2<>"",B2>A2),"Late","")

    That takes the times into account, if you only want it to be "Late" if the date is later change to

    =IF(AND(B2<>"",INT(B2)>INT(A2)),"Late","")

  3. #3
    Registered User
    Join Date
    05-27-2008
    Posts
    25

    Re: Work Out If Finish Date/Time is Late - Excel 2003

    Perfect! Thanks for your help.

+ 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