Arrays always do my head in. Find a simple piece of code of what I'm trying to do.
As I would normally throw variables into an array using:
aTest = array(1,2,3,4,5)
Is it possible to do this for multiple dimensional ones?
Dim sTest(4, 4) As String
Dim ii As Integer, jj As Integer...