but will probably need some more information, eg the contents of cell F6.

However, I see an immediate problem.

Your formula, =IF(F6.500,"F6*.25","F6*.10")

Should it be =IF(F6=500,"F6*.25","F6*.10")
{notice the = sign before the 500}. With the correction, if F6 holds 500, then the result is displayed as F6*.25

However, if F6 holds anything else, then the result is displayed as F6*.10

Is that what you are hoping for? If so, no need for us to know what is in F6.

Just one thing though. You may want to error trap the formula. For example, if I input a non-number, like - Mark - into F6, I get the result F6*.10 . Not sure if that is what you would want.

Does that help?

Mark