Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Joining two fields?

Status
Not open for further replies.

ksu176

MIS
Joined
May 31, 2005
Messages
3
Location
US
I am working with Microsoft Access reports and am having trouble joining two fields.

For example,

I have a first name and last name fields. How do I join the two so that they show up as "last name", "first name" on the report regardless of the amount of characters in the fields. It seems like I remember there is a way to do this, but I can't come up with it.

Any help would be very much appreciated!
 
Hi!

You can set the text box's control source to:

= Me!LastNameField & ", " & Me!FirstNameField

Another way to do this is to create the field in a query which is the record source of the report:

FullName: LastNameField & ", " & FirstNameField

hth


Jeff Bridgham
Purdue University
Graduate School
Data Analyst
 
Concatenate (join) the fields like this

=[lastname] & ", " & [firstname]

substituting your field names for the bits in [] if need be.


 
Thanks for your help!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top