Replace... <cfset newcsvfile = replace(newcsvfile, '"', '', "ALL")>
with <cfset newcsvfile = replace(newcsvfile, '"', ',', "ALL")> You are missing your delimiter on that string. You could also replace your double quotations with some other character you wont see in your csv file, like "~" and add it to your delimeters list in your loop. Jim Eisenhauer ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334590 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

