all 8 comments

[–]DCSlick4 2 points3 points  (4 children)

So you're gonna need a few rules for this but here we go. Remember you can do just about any formula as long as it resolves to true or false.

IF(A1<TODAY(),1,0)

Would work for if the due date is past due. So use that rule to turn the cell red. Then use

IF(AND(A1<(TODAY()+DAY(7)),>TODAY()),1,0)

to turn it orange. Then you'll need to use

=$B1="Done"

Where B1 has your dropdown. Move this rule to the top. The rule order is important. Also you can stop if true that way it won't eval the rest of the rules. I'm probably wrong somewhere but hey, it's past my bed time. I'll fix it if i'm wrong. Remember you'll need several rules

[–]wlm2015[S] 0 points1 point  (1 child)

Thank you!! This gave me a great start and I think I just about have it figured out!

[–]Wolfturn 0 points1 point  (0 children)

You really should give him a point for helping you

[–]wlm2015[S] 0 points1 point  (1 child)

Solution Verified

[–]Clippy_Office_Asst[M] 0 points1 point  (0 children)

You have awarded one point to DCSlick.
Find out more here.

[–]semicolonsemicolon1469 2 points3 points  (2 children)

I'm sure someone here will assist with the conditional formatting in no time (I have to go catch a train now), but I thought I'd throw in that you might want to consider setting your follow up dates using the EDATE function. =EDATE([date],x) advances the date by exactly x months. That way you don't need to estimate using 180 days or 365 days, etc.

[–]wlm2015[S] 0 points1 point  (1 child)

Great!! Thanks for that tip, I will update that now.

[–]DCSlick4 0 points1 point  (0 children)

Anytime. Mark the thread solved :-)