Access Form with memo message

G

Guest

I want to merge some fields from a database with a memo field that is on the
same form. The memo field has a message that I want a telemarketer to read
and as you navigate through the records the name of the contact and centain
other fields should change. It sort of like doing a mail merge letter but
done on a form that udates the message as you move from record to record.
 
D

Daveo

Hi Moche,

How about something like this. Assuming you have something like the
following fields already:

txtName
txtDateJoined

You could put the following in the control source of the memo field:

="Dear "&[txtName]&". Blah blah blah. I notice you have been a customer
since "&[txtDateJoined]&". Blah Blah blah"

And so on....

Hope this helps - David
 
G

Guest

In the control source of the field that merge the data from different fields
in the form you can write

=[Field1Name] & " " & [Field2Name] & " " & [Field3Name]

I hope that what you mean
 

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