conditional formating

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

Guest

I have three columns. A contains actual values this month, B contains yearly
average, C contains sales target. I need to conditionally format column A if
the value in A is 10% above the value in B and 20% above value in C.

Also if the value in column A is below the value in B and C I need to colour
it a different colour.

Please help and thanks

Bob
 
Use CF with a condition of Formula Is and formulae of

=AND(A1>B1*110%,A1>c1*120%)

and

=AND(A1<B1,A1<C1)

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 

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