text box within text

  • Thread starter Thread starter Josie
  • Start date Start date
J

Josie

We want to do a mass mailing to clients who are on our
database. The problem we have is:

Within the text of the letter we need to enter the data
from a textbox, on the current form, and then continue
with the of the letter.

Previously this has been done by mailmerge to word,
however we would like to be able to do this just from
Access.

We use A2002

Thanks in advance

Josie
 
Josie said:
We want to do a mass mailing to clients who are on our
database. The problem we have is:

Within the text of the letter we need to enter the data
from a textbox, on the current form, and then continue
with the of the letter.

Previously this has been done by mailmerge to word,
however we would like to be able to do this just from
Access.

We use A2002


The text box with the body of the letter can use an
expression to replace some marker characters with the
content of another field:

=Replace(bodyfield, "<marker>", otherfield)
 
Back
Top