• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Highlight row based on date and a spesific content in one cell

I have a spreadsheet with a status column and a date column.
Status can be 1 = Finished and 2 = Outstanding
I'm looking for a way to highlight the row where the status is 2 and the date is overdue.
It looks like this:
IdNameActionStatusDue Date
1​
Peter1
10.03.2024​
2​
Alex2
01.03.2024​
3​
Alex2
12.02.2024​
4​
John1
01.04.2024​

I have tried this formula; =AND($E2<TODAY();$D2="2") with no luck.

Can anyone help?
 

Attachments

  • Example.xlsx
    10.2 KB · Views: 2
=AND($E2<TODAY();$D2="2")
is looking for the number as text - "" changes a number value to a text value
=AND($E2<TODAY();$D2=2)
will fix that
 

Attachments

  • Example-ETAF.xlsx
    10.2 KB · Views: 3
Back
Top