Conditional Formatting: 30/60/90 days before and past due from 1 year mark.

Ramon Sanchez 1 Reputation point
2022-10-04T17:26:42.767+00:00

Greetings all,
I have this situation. I need to get formulas for
• between today and past due to be red
• between yesterday and 30 days before to be yellow
• between 60-30 days before to be green

These dates were added the day the actual forms happened so they need to be at the one year mark for E all the way to L

247379-image.png

Microsoft 365 and Office | Excel | For business | Windows
{count} votes

1 answer

Sort by: Most helpful
  1. Sukanya Mukherjee 90 Reputation points
    2023-07-10T12:09:53.8666667+00:00

    Hi ,@Ramon Sanchez ,

    Conditional formatting formulas are as follows

    RED

    =AND(DAYS(TODAY(),$A1)=TODAY(),DAYS(TODAY(),$A1)<TODAY())

    YELLOW

    =AND(DAYS(TODAY(),$A1)=1,DAYS(TODAY(),$A1)<30)

    GREEN

    =AND(DAYS(TODAY(),$A1)<=30,DAYS(TODAY(),$A1)<=60)

    Apply these formulas with correct cell address with your data and check whether it working ,what you wnted to with.

    Hope this helps

    Sukanya

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.