Formula for CF

D

Doug

I am using this formula in CF to show a change in price +/- 2% between 2
columns.
Only problem is, it highlights all the blank cells as well. Any idea how to
fix it?
=(MAX($F3,$AB3)/MIN($F3,$AB3))<1.02
--
 
S

smartin

Doug said:
I am using this formula in CF to show a change in price +/- 2% between 2
columns.
Only problem is, it highlights all the blank cells as well. Any idea how to
fix it?
=(MAX($F3,$AB3)/MIN($F3,$AB3))<1.02

Try this:

=AND(NOT(ISBLANK(F3)),(MAX($F3,$AB3)/MIN($F3,$AB3))<1.02)

Or maybe:

=AND(ISNUMBER(F3),(MAX($F3,$AB3)/MIN($F3,$AB3))<1.02)

(Highlight F3:AB3 with F3 active when you insert the CF formula.)
 
D

Doug

Worked great thanks!!!
--
Thank you!


smartin said:
Try this:

=AND(NOT(ISBLANK(F3)),(MAX($F3,$AB3)/MIN($F3,$AB3))<1.02)

Or maybe:

=AND(ISNUMBER(F3),(MAX($F3,$AB3)/MIN($F3,$AB3))<1.02)

(Highlight F3:AB3 with F3 active when you insert the CF formula.)
.
 

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