OutputTo HTML

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?
 
A

Allen Browne

Export a query with a calculated field wrapped in the Replace() function:
Replace([MyMemo], Chr(13) & Chr(10), " ")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top