View Single Post
  #4   Report Post  
William Horton
 
Posts: n/a
Default Conditional formating using formulas

This issue will require 2 steps. First in column B for each row place the
following formula:
=IF(A20.4,"HIGH",IF(AND(A2=0,A2<=0.4),"LOW",IF(A 2<0,"LOSS","")))
Next for each cell in column B apply the following conditional formatting:
Condition 1 - cell value is equal to HIGH -format BLUE & BOLD
Condition 2 - cell value is equal to LOW - format BOLD
Condition 3 - cell value is equal to LOSS - format RED & BOLD

These 2 steps should accomplish what I think you want.

Bill Horton

"arifnj" wrote:

Thank you Bob
I tried this and did not work
I will write down the whole thing

in column A I have
64%
40%
30%
-15%

In column B display the word "High"in the color blue (bolded) with profit
margins over 40% , "Low" in the color black (bolded) with profit margins
between 0% and 40% inclusive , and "Loss" in the color red (bolded) with
profit margins below 0%.

Thank you