so in other words
if (3.4<cell reference<13.9) then
sheet1.cell (2,2).font.color = rgb (255,0,0)
end if
end sub
Or something like this..
Right now the code only changes the font color regardless of the value
entered
thanks so much in advance
Jeff
Select your cell to apply the format to (B2)
From the Format Menu, choose "Conditional Formatting..."
Change "Cell Value Is" to "Formula Is"
Enter the formula: =AND($A$1>3.4,$A$1<13.9)
Set your format (bold red)
Click OK
Change the cell reference in your formula as needed. That should do it.
But, if you still want to use the VB approach, try this:
IF cell reference > 3.4 AND cell reference < 13.9 THEN
HTH,
Elkar