The information in this article applies to:
SYMPTOMSWhen you call a custom function created in Microsoft 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). WORKAROUND
In 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 INFORMATION
When 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 versions of Microsoft Excel earlier than Excel 97, 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 or later, 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 or later than it does in versions of Microsoft Excel earlier than Excel 97, 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 or later, 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 versions of Excel only applies when you call the function in question from a formula in a worksheet cell. Additional query words: 9.00 XL2000
Keywords : kbprg kbdta kbdtacode KbVBA xlvbmigrate |
Last Reviewed: July 20, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |