• 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.

Conditional Formatting (IF!) on another cells Value

mpyrant

New Member
I've attached a file where 'd like to apply conditional formatting to DUE DATES (Column F) IF there is no value in Column K. (i.e. if the date in Column F is past due and we haven't provided a response it needs to turn red.

That is to say that if column F is past due, I want the text in that cell red.
If the value in that cell is within three days of being due, I want the text in that cell orange.
for BOTH conditions, if there is a value in column K - then conditional formatting need not apply,.

i.e. if i haven't responded to something by the date required, I need to see it's overdue. If I did, it can stay standard formatting.

Thanks so much! Learning this is so fun!
 

Attachments

  • 8FLCL Enabling Projects Submittal Log.xlsx
    50.8 KB · Views: 2
set up 2 conditional rules
=AND(F14<>"",F14<TODAY(),K14="")
and
=AND(F14<>"",F14<=today()+3,K14="")

put the red rule first and use STOP if true

or 2007, 2010 , 2013 , 2016 , 2019 or 365 Subscription excel version
Conditional Formatting

Highlight applicable range >>
F14:F54 - Change, reduce or extend the rows to meet your data range of rows

Home Tab >> Styles >> Conditional Formatting
New Rule >> Use a formula to determine which cells to format
Edit the Rule Description: Format values where this formula is true:
=AND(F14<>"",F14<TODAY(),K14="")

Format [Number, Font, Border, Fill] format as required
choose the format you would like to apply when the condition is true
OK >> OK
then repeat for the yellow rule
 

Attachments

  • 8FLCL Enabling Projects Submittal Log - ETAF1.xlsx
    50.7 KB · Views: 4
Back
Top