Christina, You should be able to have your insert query nested inside a loop on your list from the form:
<cfloop list = "#form_rtpinfo.mcd#" delimiters="," index="listelemet"> <cfquery name="insert_mcd"> insert into RTP_MCD (RTP_ID, MCD) values (#newid.tempid#, #listelement#) </cfquery> </cfloop> you would still need to get whatever tempid you were using as well. HTH Rob ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| 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-newbie/message.cfm/messageid:4054 Subscription: http://www.houseoffusion.com/groups/cf-newbie/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15
