XL98: #VALUE! Appears When Function Is Recalculated (178435)
The information in this article applies to:
- Microsoft Excel 98 Macintosh Edition
This article was previously published under Q178435 SYMPTOMS
In Microsoft Excel 98 Macintosh Edition, cells that contain formulas that
refer to user-defined functions may return a #VALUE! error after you run a
Microsoft Visual Basic for Applications macro or perform any action that
causes the worksheet that contains the formulas to be recalculated.
Also, if a Visual Basic subroutine is running when the formulas are
recalculated, the subroutine may stop without warning.
CAUSE
These problems may occur if an error occurs in a user-defined function
while the worksheet is recalculated.
For an example of this problem, see the "More Information" section of this
article.
WORKAROUNDMicrosoft 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.
To work around this problem, press COMMAND+SHIFT+F9 to force the values to
be recalculated. When you do this, any formulas that refer to user-defined
functions are recalculated correctly.
To prevent this problem from occurring, add error-handling code to your
user-defined function, as in the following example:
Function MyFunction(CellRange As Object) As String
On Error GoTo ErrorHandler 'new line
If CellRange.Interior.Pattern = xlNone Then
MyFunction = "yes"
Else
MyFunction = "no"
End If
Exit Function 'new line
ErrorHandler: 'new line
MyFunction = "error" 'new line
End Function
In this user-defined function, the line "On Error GoTo ErrorHandler" causes
the function to continue if an error occurs. In this case, the error-
handling code causes the function to return a value of "error", instead of
"yes" or "no" or #VALUE!. After the formulas return "error", press
COMMAND+SHIFT+F9 to recalculate the worksheet.
STATUS
Microsoft has confirmed this to be a problem in the Microsoft products
listed at the beginning of this article. We are researching this problem
and will post new information here in the Microsoft Knowledge Base as it
becomes available.
Modification Type: | Major | Last Reviewed: | 6/17/2005 |
---|
Keywords: | kbprb KB178435 |
---|
|