Hello I need some help with conditional formating.
Cell C has drop down for "Anode Mother Roll" and"Cathode Mother Roll"
Cell P is result 1
Cell Q is result 2
In the results i need to change the cell to either green orred depending on the value inputted.
If Anode Mother Roll and result is <=1350 = green,>1350 = red
if Cathode Mother Roll and result is <=520 = green,>520 = red
Code for Red
Code for Green
I cant get the results to change independantly depending onthe drop list item?
Cell C has drop down for "Anode Mother Roll" and"Cathode Mother Roll"
Cell P is result 1
Cell Q is result 2
In the results i need to change the cell to either green orred depending on the value inputted.
If Anode Mother Roll and result is <=1350 = green,>1350 = red
if Cathode Mother Roll and result is <=520 = green,>520 = red
Code for Red
Code:
=OR((AND($C7="Anode MotherRoll",$Q7>1350)),(AND($C7="Cathode MotherRoll",$P7>520)),(AND($C7="Cathode Mother Roll",$Q7>520)))
Code for Green
Code:
=OR((AND($C7="Anode MotherRoll",$Q7<=1350)),OR(AND($C7="Cathode MotherRoll",$P7<=520)),OR(AND($C7="Cathode MotherRoll",$Q7<=520)))[/COLOR][/SIZE][/FONT]
I cant get the results to change independantly depending onthe drop list item?
Last edited: