Force to recalculate

B

Bura Tino

Hi,

I am using an XLL (written in C) whose functions retreive some data
off the web. The functions are not Volatile for some reason (can they
be? - if yes, I have access to the source and I can recompile). Is
there a way to force them to recalculate. Pressing F9 doesn't do it. I
need something that would be an equivalent of pressing enter in a cell
when in edit mode!

Many thanks in advance!!!

Bura
 
B

Bura Tino

Hi,

I am using an XLL (written in C) whose functions retreive some data
off the web. The functions are not Volatile for some reason (can they
be? - if yes, I have access to the source and I can recompile). Is
there a way to force them to recalculate. Pressing F9 doesn't do it. I
need something that would be an equivalent of pressing enter in a cell
when in edit mode!

Answering my own question, Crtl-Alt-F9 seems to do what I want.
 
R

Ron Bat

To Have your worksheet recalculate a user function after each inpu
change cell try this:

Private Sub Worksheet_Change(ByVal Target As Range)
Application.CalculateFull
End Su
 

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