Can this be done? Conditional formatting

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

E should reflect the following
if N=0 nothing
if N=1 then pattern
if P has any data Green
if P has no data Red

F should reflect the following
if M=0 nothing
if M=1 then pattern
if Q has any data Green
if Q has no data Red

Thanks for the help!
Angela
 
What does "nothing" mean? Is Green and Red your Pattern color? So if
N=0, P doesn't matter? In that case, one way:

CF1: Formula is =AND(N=1,ISBLANK(P))
Format1: Patterns/Red

CF2: Formula is =(N=1)
Format2: Patterns/Green
 
Angela,
Conditional Formatting only allows 3 conditions. You have four.
N column =1 P column = blank
N column =0 P column = something
N column =0 P column = blank
N column =1 P column = something

Formatting is applied based on the first true condition met.

Note Using multiple conditions If more than one specified conditio
is true, Microsoft Excel applies only the formats of the first tru
condition, even if more than one condition is true.

In other words Excel doesn't "stack up" formatting from two conditiona
formatting formulas which might both be true.

Maybe one of the Excel Gurus has a trick, but I don't believe you ca
do what you want.

HT
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top