What I am trying to do is basically determine if the (#url.e# eq 1) is true, then I need to find a way to add those items to a different array, so then I can perform the following actions on both sets of arrays:
<!--- Loop through all registered fencers to get a total count ---> <cfset regTotal=0> <cfloop from="1" to="6" index="i"> <cfset regAdd=classList[1][#i#][2]> <cfset regTotal=regTotal + regAdd> </cfloop> <!--- Send array and regTotal to UDF to determine tournament classification ---> <cfinvoke component="components.class" method="determine" returnvariable="classification"> <cfinvokeargument name="fencers" value="#classList#"> <cfinvokeargument name="fencerNumber" value="#regTotal#"> </cfinvoke> It works fine for 1 array with a count for each <cfset classListLoop="A,B,C,D,E,U"> begin assigned to a array and the number of items associated with A,B,C,D,E & U. I just need to loop over it again if (#url.e# eq 1) >A bit hard to work out what you're after, but what do you think this is >doing: > >classList[j][classLoopCount][1] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314094 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

