I have a .xll plugin that registered a few functions which we use in our excel sheets in a number of places. The performance was very poor, and we didn't have the original code, so we replicated the functionality by writing the functions in VB in a module. The functions work as expected and performance is much better.

The problem is the sheets do not automatically recognize the new functions. For example, suppose a cell's formula is "=CustomFunction()" which was earlier defined in the xll, and now has been defined in the VB. This will keep showing as "#NAME" unless I manually edit the cell, and press enter. It then correctly picks up the VB formula and calculates.

The standard tricks of recalculating formulaes : Ctrl/Alt/Shift/F9 haven't worked.

Has any one experienced this? Any idea how to solve this?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

I would do a global search and replace from =CustomFunction to =TempCustomeFunction. Then a global rename back to =CustomFunction. This will force Excel to re-evaluate the functions. (I have a vague idea that you might need to save, shutdown and restart after he first replace, but try it first to be sure).

I am pretty sure I have encounted a similar problem and doing that fixed it for me. I guess if you have a lot of workbooks to fix, you might need to do this via automation.

link|improve this answer
Thanks! That along with automation worked. – ak86 Apr 3 '09 at 10:09
Glad to hear it. – RedBlueThing Apr 3 '09 at 10:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.