View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Jacob Skaria Jacob Skaria is offline
external usenet poster
 
Posts: 8,520
Default Conditional function row formatting based on columns values being

1. Select the cell/Range (say A2:J10). Please note that the cell reference
mentioned in the formula is in the 2nd row which contains the active cell in
the selection. Active cell will have a white background even after selection

2. From menu FormatConditional Formatting
3. For Condition1Select 'Formula Is' and enter the below formula

=AND($I2<"",ABS($I2)=ABS($J2))

4. Click Format ButtonPattern and select your color
5. Hit OK


If this post helps click Yes
---------------
Jacob Skaria


"medic" wrote:

Hi,

I am evaluating financial data based on payments received for services or
written off. The values in column I is the charged amount the values in j-l
are either payments or write off amounts. The values in I are positive the
values in j-l are either 0 or negative.
I am trying to cause a row to change color if the "absolute" values in i2
and l2 are the same (in other words we wrote off the full amount) and then
apply it to the rest of the sheet.

I have selected the whole sheet and done a CF using the formula =ABS(i=l)
with no luck I have also tried =if(i=l) with no luck and various variations

thanks