Forum Discussion
Change cell colour when current date is greater than one cell date and less than another cell date
You can achieve this using conditional formatting in Excel. Here's how you can set it up:
- Select cell B3.
- Go to the "Home" tab on the Excel ribbon.
- Click on "Conditional Formatting" in the Styles group.
- Choose "New Rule" from the dropdown menu.
- In the New Formatting Rule dialog box, select "Use a formula to determine which cells to format."
- Enter the following formula in the formula box:
=AND(TODAY()>=F3, TODAY()<=G3)
This formula checks if the current date (TODAY()) is greater than or equal to the date in cell F3 and less than or equal to the date in cell G3. 7. Click on the "Format" button to choose the formatting options. You can set the fill color to green or any other color you prefer.
- Click "OK" to apply the formatting.
- Click "OK" again to close the New Formatting Rule dialog box.
Now, cell B3 will fill in green when the current date is past the date in cell F3 and before the date in cell G3. You can copy this conditional formatting rule to other cells as needed. The text and steps were edited with the help of AI.
My answers are voluntary and without guarantee!
Hope this will help you.
Was the answer useful? Mark as best response and Like it!
This will help all forum participants.
- SergeiBaklanApr 15, 2024Diamond Contributor
- NikolinoDEApr 15, 2024Gold Contributor
You can modify the conditional formatting rule to check if the current date is within 1 month of the date in cell F3. Here's how you can do it:
- Select cell B3.
- Go to the "Home" tab on the Excel ribbon.
- Click on "Conditional Formatting" in the Styles group.
- Choose "New Rule" from the dropdown menu.
- In the New Formatting Rule dialog box, select "Use a formula to determine which cells to format."
- Enter the following formula in the formula box:
=AND(TODAY()>=F3, TODAY()<=EDATE(F3,1))
This formula checks if the current date (TODAY()) is greater than or equal to the date in cell F3 and less than or equal to the date in cell F3 plus 1 month using the EDATE function. 7. Click on the "Format" button to choose the formatting options. You can set the fill color to yellow or any other color you prefer.
- Click "OK" to apply the formatting.
- Click "OK" again to close the New Formatting Rule dialog box.
Now, cell B3 will fill in yellow when the date is within 1 month of the date in cell F3. You can copy this conditional formatting rule to other cells as needed.