A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hello Dicden,
I can see you have issue with your conditional formatting formula. The problem is that your formula is checking if column O is not empty, but you need to also ensure the date in column B exists.
You can try to use this formula instead:
=AND(TODAY()-$B2>7;$B2<>"";ROW()>22105)
What this does:
-
TODAY()-$B2>7- Checks if more than 7 days have passed -
$B2<>""- Ensures column B has a date (not empty) -
ROW()>22105- Only applies the rule to rows after row 22105 (your cutoff point)
To apply it:
- Select the range in column O where you want this rule (e.g., O22106:O1000000)
- Go to Home > Conditional Formatting > New Rule
- Choose "Use a formula to determine which cells to format"
- Paste the formula above
- Set the format to red fill
- Click OK
The key difference from your attempt is adding the $B2<>"" check AND the ROW()>22105 condition to limit it to your new data only. This prevents empty cells from being highlighted and ensures the rule only applies below row 22105.
Thank you for your patience and your understanding. If you have any questions, please feel free to reach out.
I'm looking forward for your reply.
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.