The information in this article applies to:
SYMPTOMSWhen you call a custom function created in Visual Basic for Applications from a formula in a worksheet cell, the function returns an incorrect result. CAUSE
This will occur if the custom function being called accepts a ParamArray
argument and assumes that the ParamArray is a one-based array (where the
first element in the array is element 1), rather than a zero-based array
(where the first element in the array is element 0).
WORKAROUNDIn many cases, you should be able to work around this problem by decreasing the index within your custom function by one. For example, if your function looks like this
you would decrease the index within the parentheses from 5 to 4.
MORE INFORMATIONWhen you write a custom Visual Basic function in Microsoft Excel, the last argument accepted by the function can be declared as a ParamArray. When you do this, the function will accept one or more values and place them in the specified variable as an array. The value(s) can then be used within the function. For example, if you have the following function
when you enter the formula
in a cell, the first argument (6) will be used as the value of the variable
X. The remaining arguments (7, 8, 9, 10) will become elements in the array
Y().
In earlier versions of Microsoft Excel, if you call a custom function from a formula in a worksheet cell, and if the function contains a ParamArray, the ParamArray is a one-based array. That is, the first element in the array is element 1. In Microsoft Excel 97, the first element in such an array is element 0. You can demonstrate the difference by entering the following function in a Visual Basic module in Microsoft Excel:
When you enter this formula
the formula will return a different value in Microsoft Excel 97 than it
does in earlier versions of Microsoft Excel, because the array of values is
zero-based, not one-based:
So, in Microsoft Excel 5.0 and 7.0, the formula returns the value 5. In
Microsoft Excel 97, the formula returns 7.
Note that arrays declared by ParamArray are ALWAYS zero-based if called from another Visual Basic macro. The change in behavior between earlier versions of Microsoft Excel and Microsoft Excel 97 only applies when you call the function in question from a formula in a worksheet cell. Additional query words: XL97 8.00
Keywords : kbprg kbdta kbdtacode KbVBA xlvbmigrate |
Last Reviewed: July 2, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |