alright...I have been working on this off and on for days...and I think I figured out a way to replace those pesky CR/LF in excel.
Create a new spreadsheet and copy the description column over to it. Then, in the column next to it, enter the following, where A2 in the statement below is the cell that you want to remove CR/LF from.
=SUBSTITUTE(SUBSTITUTE(A2, CHAR(10), ' '), CHAR(13), ' ')
This will replace all CR/LF with a space. Save the new spreadsheet as tab-delimited .txt, then reopen in the excel session that your
original spreadsheet is currently open (this allows copy/paste operations to exceed 255 characters...if the workbook is open in a
different excel session, the fields get truncated when you copy/paste them over). By saving the document to text format, it forces the cells
to save with the text in them, thus removing the formula.
Now, you should just be able to copy/paste from one workbook to the other and Voila!
--
Rick