Conditional Formatting

  • Thread starter Thread starter Andy
  • Start date Start date
A

Andy

If A2 is within plus or minus 90% of cell A1 I do not wish to format it
conditionally, otherwise I wish to highlight it.

Formula is?
 
How about this for the conditional formatting:
=IF(ABS(A2-A1)>0.9*A1,1,0)
 
That will work, but you don't need the IF(...,1,0)

=ABS(A2-A1)>0.9*A1 will do.
 

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