The information in this article applies to:
SYMPTOMSWhen you calculate values on a worksheet, formulas that refer to cells that contain custom functions may not be calculated correctly. CAUSEThis problem may occur if the following conditions are true:
-and- -and- -and- -and- -and- WORKAROUNDMicrosoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals 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 needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web: http://www.microsoft.com/support/supportnet/overview/overview.aspTo work around this problem, use one of the following methods. Method 1Make the custom function volatile. To do this, add the following line of code to the custom function:
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 2Add 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 =A1change 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 3Press COMMAND+SHIFT+F9 to recalculate the values in the entire workbook.STATUSMicrosoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. MORE INFORMATIONExampleTo see an example of the problem described in the "Symptoms" section in this article, follow these steps:
Additional query words: XL98 recalc
Keywords : kbprg kbdta kbdtacode xlvbainfo xlformula |
Last Reviewed: February 1, 2000 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |