4 conditional formats?

G

Guest

Hi,

I need to use conditional formatting in an excel spreadsheet, but there are
four variables:

between 5% : 10% = amber colour
greater than 10% = red colour

between -5% : -10% = amber colour
less than -10% = red colour

Using conditional formatting I can only use 3 variables. Is there a way I
can do this?

Thanks
Amanda
 
B

Bob Phillips

set the cells to a default colours, then 3 conditions.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
T

Trevor Shuttleworth

Amanda

you could actually get away with just two conditions.

Formula is: =ABS(A1)>10 format red
Formula is: =ABS(A1)>=5 format amber

Obviously this only works if it's the same numbers either side.

regards

Trevor
 
G

Guest

Along the lines of Trevors response but allowing different positive and
negative values

=Or(A1>=10, A1<=-10) Format Red
=Or(A1>=5, A1<=-5) Format Amber
 

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

Top