well you are probably doing something similar (in psuedo code) to this...
Code:
start table
do while not recordset.eof
start table row
write columns
end table row
recordset.movenet
loop
end table
so instead do something like...
Code:
start table
start table row
do while not recordset.eof
write columns
recordset.movenet
loop
end table row
end table
If you want more help, post what you are using to create the table at the moment and we will try our best.