Automatic evaluation of custom worksheet function

G

Guest

Hi,

I've created a short custom function that returns TRUE or FALSE if one or
more cells within the specified range is colored red. The function works
correctly, but if the interior color of one of the specified cells ever
changes, the function doesn't dynamically re-evaluate itself... I have to
manually force the formula cell to evaluate the function by double clicking
and hitting enter.

Any ideas?

Thanks.
 
B

Biff

That's why you shouldn't base calculations on formats! Changing a format
doesn't trigger a calculation. I'm not real knowledgable about VBA but you
can insert a line of code at the beginning of your UDF that makes it
volatile:

Application.Volatile

This STILL will not cause it to recalculate when the format is changed but
it will recalculate ANY time a sheet calculation takes place.

I don't know why the experts don't discourage calculations based on
color/format.

Biff
 

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