concatenate (1 Viewer)

srideout2525

Registered User.
Local time
Today, 04:57
Joined
Mar 4, 2003
Messages
81
My report is based on a query. Two fields, for example are, FName and LName or a Client. Instead of displaying them intwo text boxes, (because the spacing makes it look like a nightmare), I'd like to concatenate them together. I have had no trouble doing this it the values are pulled from a form, but I can't seem to get it when it pulls from a query. Is it possible? I must be just missing something simple.

Any help???

Thx
 

Mile-O

Back once again...
Local time
Today, 08:57
Joined
Dec 10, 2002
Messages
11,316
FullName: [Surname] & ", " & [Forename]


Or however you'd like to display them.
 

AncientOne

Senior Citizen
Local time
Today, 08:57
Joined
Mar 11, 2003
Messages
464
If your report is based on a query which includes FName and LName and you can see them both in the field list, you should experience no problems. But don't try to concatenate the fields into a Text box having either of these names as the original control source. Create a new text box on your report and enter the formula

= FName & " " & LName
 

Mile-O

Back once again...
Local time
Today, 08:57
Joined
Dec 10, 2002
Messages
11,316
Sorry, for some reason I thought I was in the Queries forum. :rolleyes:
 

Users who are viewing this thread

Top Bottom