Hi Josh, It sounds like you just want to insert another row after each row in your query ...
<table> <cfloop query="myquery"> <tr><td>#mydata#</td></tr> <cfif currentrow lt recordcount> <tr><td> </td></tr> </cfif> </cfloop> </table> This would insert a blank row between all the data rows ( and not have a trailing blank row on the end )... unless I misunderstood the question. :) Isaac www.turnkey.to 954-776-0046 Original Message ----------------------- On my page layout I would like every other row in the table to be a blank row. Does anyone have any idea how to do this. I am working with mod 2 trying to figure it out. Joshua Tipton ______________________________________________________________________ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

