Populating a memo field in a table

G

Guest

I am trying to combine text from a number of different records into a single
memo style field on a table. I can combine the text ok by cycling through the
records (they have a common piece of data that associates them) and
concatenating the relevant text fields, but I want to add the text from each
record on a new line in the memo field.

So for example, if was trying to combine 3 records with text of 'AA', 'BB'
and 'CC' respectively, I end up with:
AABBCC
instead of:
AA
BB
CC
 
G

Guest

You say that you're cycling through the text fields. How are you doing this?

I only ask, because you can insert a carriage return between entries:

myValue = Me.txtOne & vbCrLf & Me.txtTwo

etc...

idea...?
 

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