Yeah, it's going to take some hideous code, but ASP-Hosting.ca is right.
Alternatively what you can do is add 13 to your loop. It is easier if you put the recordset into an array first. Here is basically what it would look like:
Pseudo code:
Quote:
RSarray = Recordset.getrows
For z = 0 to ubound(RSarray,2)
<td>Column1 = RSarray(0,z) </td>
<td>Column2 = RSarray(0,z+13) </td>
<td>Column3 = RSarray(0,z+26) </td>
Next
|
You need to make sure that z+13 is not greater than ubound(RSarray,2), but you should be able to figure out that code (if you can't then you need to go back to school).
~Le