Is it possible to create a form letter in access. I would like to pull
information from a query & plug it into a letter, Is this possible?
A simple form letter, sure.
= "Dear " & [FirstName] & " " & [LastName]
="It has been called to our attention that your payment of " &
Format([AmtDue],"Currency") & " is now " &
DateDiff("d",[DueDate],Date()) & " days over due."
= "Please remit by " & Format(DateAdd("d",10,Date()),"mmmm d, yyyy") &
"."
= "Thank you."
A complex form letter with lot's of formatting, etc. it might be
better to just Mail Merge with Word.