Looking at the code, it looks like the second column is a character for character match for the end of the first column.
You might just "subtract" the right column from the left by doing a replace(). Save the left column to a variable before outputting to the screen. Save the right column to a variable before outputting to the screen. Remove the top header lines from a copy of the right column. <cfset newLeftColumn=replace(leftColumn,rightColumnMinusHeader,"")> <td>#newLeftColumn#</td> <td></td> <td>#leftcolumn#</td> Just a thought. Jerry Johnson >>> [EMAIL PROTECTED] 01/21/03 06:10PM >>> OK, I've figured out at least part of the problem - the MAXROWS attribute needs to count out the number of GROUPs, not the number of records. But I actually want to split the largest group (Seattle) into two sub-groups, distributed between the two columns. Any suggestions? Aside from hard-coding? Ian On Tuesday, January 21, 2003, at 02:56 PM, Jerry Johnson wrote: > You've got the code right, but you are doing the WHOLE set in the > first list, and only the second half in the second list. > > (I say the code is right cause the right side is perfectly half of the > left side) > > Jerry Johnson > >>>> [EMAIL PROTECTED] 01/21/03 05:52PM >>> > I'm trying to get two even columns on a page, where the records are > grouped, like this: > > Seattle Tacoma > 1 5 > 2 6 > 3 7 > 4 > 5 Portland > 1 > Tacoma 2 > 1 3 > 2 4 > 3 > 4 > > But instead, I'm getting this: > > Seattle Tacoma > 1 1 > 2 2 > 3 3 > 4 4 > 5 5 > 6 > Tacoma 7 > 1 > 2 Portland > 3 1 > 4 2 > 5 3 > 6 4 > 7 > > Any idea how I get this to balance out? The link is: > > http://www.wkg.com/index.cfm/action/section/nodeid/712.htm > > Thanks, > > Ian > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

