OutputTo HTML

  • Thread starter Thread starter Dale Fye
  • Start date Start date
D

Dale Fye

I have a memo field that contains upto about 1000
characters of text. Some of the values in this field
include hard carraige returns entered by my users.

When I use OutputTo and select Excel as the output type,
these fields are truncated. When I select HTML as the
output type, and give the file an extension of xls, the
entire text is included in the output, but the output
creates a new row after each of the hard carraige returns.

Is there any way to get all of this text into a single
output cell?
 
Export a query with a calculated field wrapped in the Replace() function:
Replace([MyMemo], Chr(13) & Chr(10), " ")
 
Back
Top