Share via

Conditional formatting with 3 conditions to meet and due dates

Ryan 0 Reputation points
2026-05-15T09:46:05.2933333+00:00

Hi, I have been trying to search some formula where I can use conditional formatting for the below

image

Where Column H will format if Column B, C, & D showing "Pending Reply" (will be blank in some rows) & if date today minus date submitted (Column A) is more than 14 Days

Microsoft 365 and Office | Excel | For business | Windows
0 comments No comments

3 answers

Sort by: Most helpful
  1. Henry-N 13,130 Reputation points Microsoft External Staff Moderator
    2026-05-15T10:44:06.8866667+00:00

    Hi @Ryan

    Thank you for posting your question in the Microsoft Q&A forum. 

    Regarding applying conditional formatting to column H, please follow the step-by-step instructions below: 

    Steps to apply conditional formatting 

    1. First, ensure your data is set up as described  User's image
    2. Select cell H2 (or the first cell in column H where you want the rule applied) 
    3. Go to Conditional Formatting > Manage Rules  User's image
    4. Click New Rule  User's image
    5. Select “Use a formula to determine which cells to format” User's image
    6. Enter the following formula:
    =AND($B2="Pending Reply",$D2="Pending Reply",$F2="Pending Reply",TODAY()-$A2>14)  
    

    User's image

     Click Format, choose your preferred color (for example, red), then click OK 

    User's imageUser's image

    Click Apply to activate the rule 

    The rule checks if columns B, D, and F all contain "Pending Reply" 

    It also verifies whether the date in column A is more than 14 days before today 

    If all conditions are met, the corresponding cell in column H will be highlighted 

    Example 

    • If the date in column A is 15/05/2026, the condition will not be met (not older than 14 days), so no formatting is applied  User's image
    • If the date is changed to 01/04/2026, the condition is met, and the cell in column H will be highlighted (e.g., in red)  User's image

    Thank you again for your time and understanding. I appreciate your patience, and I’m here to help—please feel free to share any updates or additional details. 


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".                         

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread 

    Was this answer helpful?

    1 person found this answer helpful.

  2. Barry Schwarz 5,676 Reputation points
    2026-05-16T13:46:06.9566667+00:00

    The following formula evaluates to TRUE when when the date in A2 is far enough back and either

    • all three data cells contain "Pending Reply"

    or

    • any two of them do and the third is empty
    =AND(TODAY()-A2>14,LET(p,"Pending Reply",pp,(--(B2=p))+(--(D2=p))+(--(F2=p)),b,(--(B2=""))+(--(D2=""))+(--(F2="")),OR(pp=3,AND(pp=2,b=1))))
    

    You can use it for your conditional format.

    Was this answer helpful?

    0 comments No comments

  3. Ryan 0 Reputation points
    2026-05-16T00:59:34.5233333+00:00

    Hi, thank you
    The formula works, although, there will be cases that either B2, D2 or F2 will be blank.

    Was this answer helpful?

    0 comments No comments

Your answer

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