Forum Discussion
mcopeland8930
Oct 28, 2022Copper Contributor
Conditional Formatting - multiple column values
Hello,
I'm wanting to use conditional formatting to cross out names in a list in column I if dates in column A are within 7 days and same name appears in column B
8 Replies
Sort By
- OliverScheurichGold Contributor
=(A2>=TODAY())*(A2<=TODAY()+7)*(B2=I2)
You can try this rule for conditional formatting. The dates have to be within 7 days of today.
=$I$2:$I$25
This is the "applies to" range in the example.
- mcopeland8930Copper ContributorHmm... that doesn't seem to be working, I'm not getting an error it's just not doing anything. I'm wondering if I'm going to have to enter every name in an IF function. I was hoping I didn't need to do that.
- OliverScheurichGold Contributor
- mcopeland8930Copper ContributorThank you so much I'll give it a shot!