add carriage return to end of text

G

Guest

How can I add a carriage return to the end of text? Example:
update addendum set text_data = ([textdata] + _____)
What would I put in the space _____ to get a carriage return here?
Thanks for any help!
 
G

Guest

Thanks a lot, that looks like it worked.

Duane Hookom said:
Try:
text_data = [textdata] & Chr(13) & Chr(10)


--
Duane Hookom
MS Access MVP

denise said:
How can I add a carriage return to the end of text? Example:
update addendum set text_data = ([textdata] + _____)
What would I put in the space _____ to get a carriage return here?
Thanks for any help!
 

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