Hi Group,
I'm hoping someone will be able to help.
I am using the following code to output an array of data. However for every row and column, the FIRST item in the arrayed is being output.
I've debugged and inspected the irows and icols variables, and these are correct.
Set rst = objConn.Execute(SQL)
If Not rst.EOF Then
arrData = rst.GetRows()
rst.Close
set rst=nothing
irows = UBound( arrData, 2 )
icols = UBound( arrData, 1 )
redim flippedResults(irows,icols)
for i = 0 to irows
for j = 0 to icols
flippedResults(i,j) = arrData (j,i)
next
next