1
123xxxxx
is it possible to add to text field together then put it in another field in
a new table? if so how would i do it?
a new table? if so how would i do it?
is it possible to add to text field together then put it in another field in
a new table? if so how would i do it?
to add the first name to the last name and put it in a table so i can use it
for future use, so i dont need to type out the name of the person all the
time
John Vinson said:to add the first name to the last name and put it in a table so i can use it
for future use, so i dont need to type out the name of the person all the
time
Reread Ken's and my suggestion. You are apparently assuming that you
must have a Table containing the field in order to avoid typing it in
every time; this assumption is incorrect!
If you have the LastName field and the FirstName field in a table, you
can create a Query concatenating those names: e.g.
FullName: [FirstName] & " " & [LastName]
Save this Query.
You can now use the Query as the recordsource for a Form or a Report;
you can use this Query to export to a text file or to Excel; you can
use the FullName field for searching or for sorting; you can do
ANYTHING with this query (except edit the FullName field).
Nobody has suggested that you should "type out the name of the person
all the time". We're suggesting that you use the tools that Access
provides.