1 min readfrom Microsoft Excel | Help & Support with your Formula, Macro, and VBA problems | A Reddit Community

How to highlight the cell when it's showing a date that's 1 month after today's date?

Our take

To highlight cells in column D that display a date one month after today, you can use conditional formatting effectively. First, ensure your dates are correctly formatted as dates, even if they appear as "Renewal ddmmmyy." For the initial highlight, use the formula `=AND(D2=TODAY()+30, D2<>"")` to turn the cell yellow. For the future color change once the date becomes today, you can modify the formula to `=AND(TODAY()=D2, D2<>"")`. This approach keeps your data dynamic and visually

I'd like a cell to become highlighted when the date it's showing is 1 month after today's date. I'd also like it to stay highlighted YELLOW until that (1 month later date) becomes today's date, after which it becomes highlighted with another color.

These cells are under 1 column D. And they're filtered as such: "Renewal "ddmmmyy

So that the text displayed is Renewal ddmmmyy but the conditional formatting still reads it as date so that conditions will apply.

Brave leo gave this conditional rule for the FUTURE COLOR let's call it: =AND(TODAY()>=D2-30, TODAY()<=D2, D2<>"")

But that didn't work for some reason.

Could someone help? highly appreciated.

submitted by /u/notmuchery
[link] [comments]

Read on the original site

Open the publisher's page for the full experience

View original article

Related Articles

Tagged with

#Excel alternatives for data analysis#natural language processing for spreadsheets#generative AI for data analysis#rows.com#Excel compatibility#financial modeling with spreadsheets#Excel alternatives#conditional formatting#highlighted#date#1 month#today's date#column D#Renewal ddmmmyy#filtered#conditions#color#FUTURE COLOR#rule#cell