Home |
Search |
Today's Posts |
#10
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Tom,
Thanks for your persistence. I had originally declared it with [Public v() As Variant]. However, using the [Public v As Variant] declaration you indicated and then testing with IsArray() has done the trick. Thanks, VBA Dabbler "Tom Ogilvy" wrote: [I said if you declared it as ] [Public v as Variant] [then it isn't an array until you make it one. If that isn't the way you declared it, then the suggestion isn't pertinent - no use responding with I know its an array and if you did declare it that way, then it isn't an array until it has been assigned one. If you don't declare it that way, then maybe you should and the problem is solved. ] [See my and to answer to YouGotta.B.Kidding in September of 1997. (LOL)] -- Regards, Tom Ogilvy "VBA Dabbler" wrote in message ... I use a publicly declared dynamic array for multiple calls of the same function, where the data does not change from call to call - this is substantially faster than getting the data from a range, worksheet, or query each time the function is called. However, I only need to populate the array on the first instance of a call to the function. I know it's an array, but won't know which call is the first, programmatically. Typically I've been working off of the assumption that the array exists and is populated, and handle the 'Subscript out of range' error when it occurs. See my responses below in square brackets. Thanks, VBA Dabbler "Tom Ogilvy" wrote: Why do you want to Check? [So that my code doesn't fail, when I know how to handle the condition.] Seems like you should know. [See my second paragraph above.] If it is a global variable that you are checking if it is populated then how have you declared it? If you used Public v as Variant then isarray(v) should work [It doesn't work as I need. I know it's an array - I want to know that it's populated. If it's not populated I get the 'Subscript out of range' error.] If Public v() as Whatever then you have received answers for that. -- Regards, Tom Ogilvy "VBA Dabbler" wrote in message ... Does anyone know how to proactively test an array for data prior to its use without using an error event? If not, what is a good error test? I have been using 'Err.Number = 9' as a test to call the population routine. Thanks, VBA Dabbler |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Calculate mean of test scores from rows of test answers | Excel Discussion (Misc queries) | |||
logical test, array, text and numbers | Excel Worksheet Functions | |||
Test for end of array of objects? | Excel Programming | |||
Test for Single Character That is in an Array | Excel Worksheet Functions |