+ Reply to Thread
Results 1 to 3 of 3

Column showing "overdue"?

  1. #1
    StargateFanFromWork
    Guest

    Column showing "overdue"?

    A colleague just came to ask me re this and I'm not advanced enough in my
    vb skills at all, but thought I'd find out for her anyway.

    She'll have a column showing a date. In another column, it'll have a target
    date. I'm guessing that in a third column, she could have a formula so that
    all rows that have the one date "overdue", i.e., that is going past that due
    date, will show something. Either text saying "overdue", or even better, "1
    day(s) overdue", the "1" being replaced by however many days they are past
    due.

    Is this do-able? What would be best approach, does anyone feel?

    Thank you! :oD



  2. #2
    Ian
    Guest

    Re: Column showing "overdue"?

    With date in A1 and target date in B1.

    =IF(B1>A1,B1-A1&"day(s) overdue","")

    --
    Ian
    --
    "StargateFanFromWork" <[email protected]> wrote in message
    news:[email protected]...
    > A colleague just came to ask me re this and I'm not advanced enough in my
    > vb skills at all, but thought I'd find out for her anyway.
    >
    > She'll have a column showing a date. In another column, it'll have a
    > target
    > date. I'm guessing that in a third column, she could have a formula so
    > that
    > all rows that have the one date "overdue", i.e., that is going past that
    > due
    > date, will show something. Either text saying "overdue", or even better,
    > "1
    > day(s) overdue", the "1" being replaced by however many days they are past
    > due.
    >
    > Is this do-able? What would be best approach, does anyone feel?
    >
    > Thank you! :oD
    >
    >




  3. #3
    PaulD
    Guest

    Re: Column showing "overdue"?

    "StargateFanFromWork" <[email protected]> wrote in message
    news:[email protected]...
    : A colleague just came to ask me re this and I'm not advanced enough in
    my
    : vb skills at all, but thought I'd find out for her anyway.
    :
    : She'll have a column showing a date. In another column, it'll have a
    target
    : date. I'm guessing that in a third column, she could have a formula so
    that
    : all rows that have the one date "overdue", i.e., that is going past that
    due
    : date, will show something. Either text saying "overdue", or even better,
    "1
    : day(s) overdue", the "1" being replaced by however many days they are past
    : due.
    :
    : Is this do-able? What would be best approach, does anyone feel?
    :
    : Thank you! :oD

    Look into the days360 function, pehaps a formula like this would work
    =IF(DAYS360(A1,B1)>-1, DAYS360(A1,B1) & " Remain", DAYS360(B1,A1) & " Over
    Due")
    assuming your start date is column A and target date is column B
    Paul D



+ 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