do you mean access the second column of "RecordArray" for each row in the second column of the table?
Arrays work like: RecordArray(ColumnCount, RowCount)
so
Code:
Response.Write("<table>")
For n = 0 to 25
Response.Write("<tr>")
Response.Write("<td>")
Response.Write(RecordArray(0, n))
Response.Write("</td>")
Response.Write("<td>")
Response.Write(RecordArray(1, n))
Response.Write("</td>")
Response.Write("</tr>")
Next
Response.Write("</table>")
sorry if Ive got this all mixed up....
Pete