-
Array question ?
Hi.
I have never realy worked with arrays. How would i read the value of an array after several values have been assigned to it?
Do i have to loop through the array to get all the values or is there a quick way to check all the values in the array?
Many thanks
-
If you do know exact index (perhaps it was stored into a variable when array was populated) then you won't need to loop, otherwise - yes.
-
depends on context
if you used a fixed array or a dynamic array, both are required for you to loop through the array to obtain all of the indexs... use the UBound() function to determine what the top most index is in a dynamic array...
Good Luck
:cool: