Forum Discussion
Conditional formatting - new rule based on two related column headings
Need to create a new rule that changes cell colors (column H) based on more than 2 falls (column C) in 30 days for the same person (column A). I've found the formula for just the date - but not for adding in the same name. Goal is to be alerted (visual alert) if someone fell more than 2 times in 30 days. Thanks!
4 Replies
- ScottAngBrass Contributor
Added two conditional formatting for column H. Green supersedes yellow, i.e. if the conditions for both yellow and green are met, green takes precedence. Example with John Wick:
First fall is green because the condition for green is met although he fell twice within 30 days which should give him yellow.
Second fall is yellow because only the condition for yellow is met.
- Pistachio1027Copper Contributor
Thank you for this! It's been very helpful for the green fill.
I am trying to apply the formula and substituting the applicable cells - but it does not seem to work.
=AND(XLOOKUP(B1,B:B,G:G,,0,-1)-XLOOKUP(B1,B:B,G:G,,0,1)>0,XLOOKUP(B1,B:B,G:G,,0,-1)-XLOOKUP(B1,B:B,G:G,,0,1)<=30)
I cannot get it to work.
- ScottAngBrass Contributor
The formula for yellow expects the dates to be in ascending order, as that is how the dates are in your previous file. In your latest file, the dates are in descending order. I have modified the formula accordingly. Also, I have moved the CF for green to the top, assuming green should supersede yellow when conditions for both colors are met for the same row.
- Pistachio1027Copper Contributor
Thank you - this is very helpful. So the formula is: =OR(ISERROR(SEARCH("sutures",G1))=FALSE,ISERROR(SEARCH("steristrips",G1))=FALSE,ISERROR(SEARCH("splint",G1))=FALSE,ISERROR(SEARCH("sprain",G1))=FALSE)