On the report where you want the full name to appear, put a text box with
this Control Source:
=Trim([firstname] & " " & [lastname])
Make sure the Name of this text box is not the same as a field name (e.g. it
cannot be called firstname.)
In the table, you do want the 2 names in separate fields, to facilitate
searching. You do not want a 3rd column in the table with the combined
names, since it is so easy to combine them when needed.
More info about how and when to combine fields:
Calculated fields
at:
http://allenbrowne.com/casu-14.html
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Reply to group, rather than allenbrowne at mvps dot org.
shanakie said:
Hi, I'm using Access 2003 SP1. I have two fields, 'firstname' and
'lastname'
which I want to merge into a single 'name' field. Is it possible to do
this?