Link to home
Create AccountLog in
Avatar of gcgcit
gcgcit

asked on

Concatinating String

I have a report, I want it to display the First and Last Name of an employee concatinated into one field.

I had the controlsource of the field set to this:

=[EmployeeFirstName] & " " & [EmployeeLastName]

On the report, it's displaying "# Type" in that field instead of the name.  What's the most effecient way to achieve what I want done?
Avatar of lludden
lludden
Flag of United States of America image

Try
[EmployeeFirstName].Value & " " & [EmployeeLastName].Value
ASKER CERTIFIED SOLUTION
Avatar of Jeffrey Coachman
Jeffrey Coachman
Flag of United States of America image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
SOLUTION
Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
Avatar of gcgcit
gcgcit

ASKER

boag2000: Just realized it was a look-up not textbox control.  I deleted the control and added a textbox to make sure no weird constraints were on it and realized it wasn't a textbox afterall.  Thanks for that tip.
Avatar of gcgcit

ASKER

correction: mbizup gave that tip
Avatar of gcgcit

ASKER

Both provided information that helped solve the issue.
^
Yeah, I was wondering about that as well, ...I have never seen this error...?
great, thanks

;-)

Jeff