Cell reference in comparison formula

E

E2out

What I need to do (and I'm close to doing it) is I want to be able to enter
values in a cell but in the background (using a code module - VB) have those
values tested in a Value<cell value<value formula and then have the font
color change if the result is true.

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
 
E

Elkar

I'd think Conditional Formatting might be more appropriate here than using
VB. Try this:

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top