Conditional Formating + Fonctions + Conditions

jarnax

New Member
Joined
Nov 24, 2010
Messages
8
Hello everybody ;)!

I'm working in a Helpdesk and i have to show every monday a list of tickets still open.

All tickets are sorted by priorities and dates.

I've found a formula to change the font color in a row if a cell was equal to 0, 1 or 2

=INDIRECT("A"&ROW())=1 --> Orange
=INDIRECT("A"&ROW())=2 --> Red

It works great but i would like to improve the formula:

In my excell sheet, i created a column "Date". My boss asked me to put rows in red if an issue was open from more than 10 days in orange and between 10 and 20 days in red.

Is there a way to integrate this kind of conditions in my formula ?

Best regards,

Jarno :)
 
Thanks jasonb75 :)

It works now :) But (always a "but") :warning: it doesn't check the row "priority". I need this conditional formating only for priorities 1 and 2 :rofl:
 
Upvote 0

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Assuming no priority 0, add an extra condition to the formula.

=AND($D1 < 3;$A1 <= TODAY();$A1 >= TODAY()-10)
=AND($D1 < 3;$A1 < TODAY()-10;$A1 >= TODAY()-20)

otherwise

=AND(OR($D1=1;$D1=2);$A1 <= TODAY();$A1 >= TODAY()-10)
 
Upvote 0

Forum statistics

Threads
1,224,609
Messages
6,179,882
Members
452,948
Latest member
Dupuhini

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top