Meging fields

W

Wydra Training Centers

Jamie;

This works:

FullName: [FirstName] & " " & [MI] & " " & [LastName]

You will need to modify the Field names, (those within brackets) to match
your field names, (FullName: [FName] & " " & [MName] & " " & [LName].

If your report is based on a query insert a new column and place the
expression above in that column.
Note: FullName: [FirstName] & " " & [MI] & " " & [LastName] requires that
you include the needed fields in the query.

A slight modification allows you to exclude those field names from your
query.

FullName: [tblName]![DescFirstName] & " " & [tblName]![DescLastName] & " " &
[tblName]![DescSuffix]
Modify "tblName" with the name of the table your using.

You can also use FullName: [FirstName] & " " & [MI] & " " & [LastName] in a
Report.

Drag the fields containg the First, Middle and Last names into the report.
Set their Visible properties to No Insert a Text Control and in the
Properties Control soure use:
=FullName: [FirstName] & " " & [MI] & " " & [LastName], (again modify as
needed).

Know this works. Hope I explained it clearly.

Andy
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top