RESOLUTION
To correct this problem, obtain Microsoft Excel 97 Service Release 2
(SR-2).
For additional information about SR-2, please see the following article in
the Microsoft Knowledge Base:
151261 : OFF97: How to Obtain and Install MS Office SR-2
To temporarily work around this problem, use one of the following methods.
Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.
Method 1
Make the custom function volatile. To do this, add the following line of
code to the custom function:
Application.Volatile
NOTE: A volatile function is recalculated every time that the worksheet is
recalculated. Making your custom function volatile may decrease the
performance of your worksheet.
Method 2
Add to any formula that refers to a cell that contains a custom function.
To do this, add the following to the formula:
+(NOW()*0)
For example, if your worksheet contains a custom function in cell A1, and
cell B1 contains the following formula
=A1
change the formula in cell B1 to the following:
=A1+(NOW()*0)
NOTE: When you make this change to the formula in cell B1, cell B1 is
recalculated every time that the worksheet is recalculated.
Method 3
Press CTRL+ALT+F9 to recalculate the values in the entire workbook.