When stepping through code in Developer mode in Excel I see an array in VBA like so:
arrData(x)(y,z)
Is this a 2-dimensional array (the (y,z) part) stored inside an array (the (x) part)?
How do I access a particular element within the array and test if the value equals something I'm interested in?
If arrData(1)(2,3) = "orange" Then
End If
My above code yields Run-time error '9': Subscript out of range. The max value of x and y is 1, and the max value of z is 100.