tags:

views:

435

answers:

1

Hi there,

Let's say I have the formula =MyCustomFunction(D2), where MyCustomFunction is writen in an Excel AddIn using C#

How can I, in a sensible way, tell my formula to re-run when cell D2 is changed?

A: 

If the penalty on performance is not too great i.e. the spreadsheet is not huge with many calculations, then can you not simply set Application.Volatile=True in your function?

Lunatik