I'm trying to determine when a user defined function (UDF) using a ParamArray has been used on the worksheet with no ParamArray parameter(s) supplied.
I've tried the IsEmpty, IsArray, IsError, comparing to nothing, comparing to a zero-length string, etc.
I'm aware that a paramarray is always byVal and that the variant array is always zero-based, but if it doesn't exist, how is it an array?
- comparing the first element of the array to Nothing or Not Nothing throws an error
- IsEmpty reports False
- IsArray oddly reports True
- IsError reports False for both tests ans tests(0)
testParams UDF:
Public Function testParams(ByRef ndx As Long, ParamArray tests())
Select Case ndx
Case 1
testParams = CBool(tests(LBound(tests)) Is Nothing)
Case 2
testParams = IsEmpty(tests)
Case 3
testParams = IsArray(tests)
Case 4
testParams = IsError(tests)
Case 5
testParams = CBool(tests(LBound(tests)) = vbNullString)
End Select
End Function
In the following example, I am simply returning to the worksheet what trying to access the ParamArray returns.
How can I determine if the user has not provided the ParamArray parameter(s) in a real-world UDF that requires them? I would prefer a simple boolean check vs. testing against testing whether something is nothing.
An excellent explanation of Array Allocation is at http://www.cpearson.com/Excel/IsArrayAllocated.aspx
Excert:
And the function
Using it with a
Function
with a Parameter Array