+ Reply to Thread
Results 1 to 4 of 4

Conditional format entire row based on overdue date range

  1. #1
    Registered User
    Join Date
    05-31-2013
    Location
    America
    MS-Off Ver
    Excel 2010
    Posts
    4

    Conditional format entire row based on overdue date range

    Question: In Microsoft Excel 2010, is there a way to automatically highlight past due dates bases on a range of days?

    For example, I have a column with a lists of dates depicting when milestones are due. I would like Excel to highlight dates using conditional formatting based on how long they are overdue. I would like to highlight milestones over 60 to 90 days overdue in yellow, Actions 90 to 120 days overdue in orange and Actions over 120 days overdue in red. Based on todays date.

    I have created the following formula for the Actions over 120 days overdue in red:

    =AND(F1<>"",F1<TODAY()-121)

    It works fine.

    I just cant get the range to work properly. i.e. milestones over 60 to 90 days overdue or Actions 90 to 120 days overdue . This is the formula that I was working on and cant get to work.

    =AND(F1-TODAY()>=-60,F1-TODAY()<=-90)
    =AND(F1<>"",F1<TODAY()<=-120,F1<>"",F1<TODAY()>=-90)

    Any assistance is greatly appreciated.

  2. #2
    Forum Expert
    Join Date
    08-27-2008
    Location
    England
    MS-Off Ver
    2010
    Posts
    2,561

    Re: Conditional format entire row based on overdue date range

    Corrected versions of your formulae:
    =AND(F1<>"",F1-TODAY()<=-60,F1-TODAY()>=-90)
    =AND(F1<>"",F1-TODAY()>=-120,F1-TODAY()<=-90)

    But, the simpler approach is to reuse the first formula:
    =AND(F1<>"",F1<TODAY()-121)
    ...
    =AND(F1<>"",F1<TODAY()-90)
    =AND(F1<>"",F1<TODAY()-60)

    With the rules applied in that order (red at the top). This will achieve the same effect and is easier to understand. Basically, everything older than 60 is coloured yellow, then amber is applied to everything over 90, which re-colours some of the red).
    CC


    If you feel really indebted please consider a donation to charity. My preferred charity is ActionAid but there are plenty of worthy alternatives.

  3. #3
    Registered User
    Join Date
    07-01-2009
    Location
    India
    MS-Off Ver
    Excel 2003
    Posts
    8

    Re: Conditional format entire row based on overdue date range

    You can get your work done without using formula. Using Excel 2010, you may use the Conditional Formating feature to get the desired result.

    Find the result in the attachment. To know the usage of Conditional Formating, under Home tab, Select Conditional Formating -> Manage Rules.
    Attached Files Attached Files

  4. #4
    Registered User
    Join Date
    05-31-2013
    Location
    America
    MS-Off Ver
    Excel 2010
    Posts
    4

    Re: Conditional format entire row based on overdue date range

    Thanks so much, That worked!!!

+ 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