I forgot the line to get the form results. This is the way I usually handle this kind of task. Look ma, no evaluate().
FORM <form> <input type=checkbox name="cb_1"...> <input type=checkbox name="cb_2"...> <input type=checkbox name="cb_77"...> <input type=checkbox name="cb_999"...> .... </form> ACTION LOGIC <cfloop collection="#form#" item="elem"> <cfif left(elem,2) EQ "cb"> <!--- This is a checkbox element, do something with it. ---> <cfset checkBoxNum = listLast(elem,"_")> <!--- CB number. ---> <cfset checkBoxVal = form[elem]> <!--- CB Value. ---> ... </cfif> </cfloop> This method has no cares about the actual numbers or their order. -------------- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA --------- | 1 | | --------- Binary Soduko | | | --------- "C code. C code run. Run code run. Please!" - Cynthia Dunning -------------- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA --------- | 1 | | --------- Binary Soduko | | | --------- "C code. C code run. Run code run. Please!" - Cynthia Dunning Confidentiality Notice: This message including any attachments is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender and delete any copies of this message. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:233605 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

