Hi Carl, >Can someone help for my looping please... >What I want to do is if the RecordCount from the query is greater than multiples of 3 >then I want to start a new <tr>
What you want is something along the lines of: <cfif CountVar mod 3 eq 0></tr><tr></cfif> That will give you a set of three tds before the row break. You can play with the numbers to get any sort of format you want. -- Yours, Kym --- You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] Aussie Macromedia Developers: http://lists.daemon.com.au/
