Re: coditional formatting

Tech-Archive recommends: Repair Windows Errors & Optimize Windows Performance



Thanks Biff, works great!

"Biff" wrote:

> Hi!
>
> If the default font color is black then you only need one condition:
>
> Select the range of cells.
> Format>Condtional Formatting
> Condition 1
> Formula is:
>
> =AND(ROUND(A1/100000,1)-INT(ROUND(A1/100000,1))>0.09,ROUND(A1/100000,1)-INT(ROUND(A1/100000,1))<=0.4)
>
> Set font color to RED
>
> If the default font color is something other than black, after setting
> condtion 1:
>
> Add
> Condition 2
> Formula is:
>
> =AND(ROUND(A1/100000,1)-INT(ROUND(A1/100000,1))>=0,ROUND(A1/100000,1)-INT(ROUND(A1/100000,1))<=0.5)
>
> Set font color to BLACK
>
> Biff
>
> "John Knoke" <JohnKnoke@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
> news:F3DA8B84-A0A3-485E-9EFC-DCB62FDEC788@xxxxxxxxxxxxxxxx
> > How can I do a coditional formatting of "n" cells in column where the
> > cell
> > number is divided by 100,000 and if the decimal number is between X.1 and
> > X.4
> > format the cell number in "red". If the decimal number is between X.0 and
> > X.5
> > format the number in "black"
> >
> > Divide each cell by 100,000
> >
> > A1 117,176 1.2 Red A1
> > A2 218,205 2.2 Red A2
> > A3 288,242 2.9 Black A3
> > A4 375,224 3.8 Black A4
> > A5 454,227 4.5 Black A5
> > A6 535,557 5.4 Red A6
> > A7 612,154 6.1 Red A7
> > A8 694,623 6.9 Black A8
> >
> > Thanks for any help
> >
> >
>
>
>
.



Relevant Pages

  • Re: How to change Font color and force the user to use it
    ... the radiobutton selected. ... single font color, but I'd like to force the user to write in red as ... black text in row 1 and column 1 but red text in every other cell. ... to change font colors manually upon selecting one of the initial 4 ...
    (microsoft.public.word.vba.general)
  • Re: How to change Font color and force the user to use it
    ... for the modifications he makes depending on which radiobutton is chosen. ... single font color, but I'd like to force the user to write in red as long as ... black text in row 1 and column 1 but red text in every other cell. ... to change font colors manually upon selecting one of the initial 4 ...
    (microsoft.public.word.vba.general)
  • Re: How to change Font color and force the user to use it
    ... specific colour (depending on the radiobutton selected) and then accepts them ... single font color, but I'd like to force the user to write in red as ... black text in row 1 and column 1 but red text in every other cell. ... to change font colors manually upon selecting one of the initial 4 ...
    (microsoft.public.word.vba.general)
  • RE: Simple colour dropdown
    ... if you are going to use the font color add ... ... Private Sub cbo1_Change ... Dim cell As Range ... Dim KeyCells As String ...
    (microsoft.public.excel.misc)
  • Re: selection.font.color returns wrong color; the first execution
    ... If .ColorIndex < 0 Then ... To find the Font color used in cell "A1" use: ... I normally define and set worksheet and workbook objects then use those ... notice that the Font Color was reported as 255 ...
    (microsoft.public.excel.programming)