You are correct in your analysis. However, how do I tweak to code to accomplish the objective?
This is the code that is populating that column:
xlWksht.Cells(ii, 9).Value = rsin![Comments]
This is the data from the query(recordset):
"3/21/2005: Compare this new file with the file created in the last pay cycle of 2004"
You mean I should do something like this?:
[code]xlWksht.Cells(ii, 9).Value = & "'" & rsin![Comments] & "'"?
tgifgemini