While it is preferable to use & for concatenation, + is also permissible.
There is a subtle difference between the two: + propagates Nulls, while &
doesn't. In other words, "something" + Null results in Null, while
"something" & Null results in "something". However, I doubt very much that
that's relevant for this problem.
--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
"DawnTreader" <(E-Mail Removed)> wrote in message
news:5ebf001e-e582-442e-886c-(E-Mail Removed)...
> - Show quoted text -
Ah, although I am no expert, and I have never tried the "txtField1 +
txtField2" method of putting things together, but shouldn't you be
using ="Persons Related To: " & Trim$([txtFirstName]) & " " & Trim$
([txtLastName]) ?
I have never had a problem when doing things that way.