Hi,
I have a 2 dimensional array which i would like to process with the "For Each Item in ArrayName....." as below.
Dim Item
Dim ArrayName(2,3)
ArrayName (0,0) = "Hello"
ArrayName (0,1) = "Fred"
ArrayName (0,2) = "Burt"
ArrayName (1,0) = "Goodbye"
ArrayName (1,1) = "Fred"
ArrayName (1,2) = "Burt"
For Each Item In ArrayName
etc etc
My Question is how do I process the second element of the array from here. The output I am trying to achieve would be
"Hello Fred Burt"
"Goodbye Fred Burt"
Thanks
I have a 2 dimensional array which i would like to process with the "For Each Item in ArrayName....." as below.
Dim Item
Dim ArrayName(2,3)
ArrayName (0,0) = "Hello"
ArrayName (0,1) = "Fred"
ArrayName (0,2) = "Burt"
ArrayName (1,0) = "Goodbye"
ArrayName (1,1) = "Fred"
ArrayName (1,2) = "Burt"
For Each Item In ArrayName
etc etc
My Question is how do I process the second element of the array from here. The output I am trying to achieve would be
"Hello Fred Burt"
"Goodbye Fred Burt"
Thanks