Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How about this for the conditional formatting:
=IF(ABS(A2-A1)0.9*A1,1,0) -- John C "Andy" wrote: 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? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
That will work, but you don't need the IF(...,1,0)
=ABS(A2-A1)0.9*A1 will do. -- David Biddulph "John C" <johnc@stateofdenial wrote in message ... How about this for the conditional formatting: =IF(ABS(A2-A1)0.9*A1,1,0) -- John C "Andy" wrote: 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? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=OR(A2<A1*0.1,A2A1*1.9)
-- David Biddulph "Andy" wrote in message ... 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? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Maybe this CF
=ABS(A1-A2)A1*0.1 Mike "Andy" wrote: 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? |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
The OP asked for 90%, not 10%, but the structure is OK.
-- David Biddulph "Mike H" wrote in message ... Maybe this CF =ABS(A1-A2)A1*0.1 Mike "Andy" wrote: 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? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formatting cells in a column with conditional formatting? | Excel Discussion (Misc queries) | |||
Protect Cell Formatting including Conditional Formatting | Excel Discussion (Misc queries) | |||
conditional Formatting based on cell formatting | Excel Worksheet Functions | |||
conditional Formatting based on cell formatting | Excel Worksheet Functions | |||
Conditional Formatting that will display conditional data | Excel Worksheet Functions |