Hi,<br><br>Why dont you loop on your current list and modify each item to add those single quotes?<br>A bit like this:<br><CFLOOP LIST="#yourCurrentList#" INDEX="item"><br> <CFSET temp = "'" & #item# & "'"><br> <CFSET position = ListFind(yourCurrentList, item)><br> <CFSET yourCurrentList = ListSetAt(yourCurrentList, temp, position)><br></CFLOOP><br><br>This code wont probably work directly... Edit it. I just wanted to show you the idea behind it...<br>Dont hesitate to contact me for further questions...<br><br>Thx,<br>Christian Dionne