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?
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?
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
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.
ASKER
correction: mbizup gave that tip
ASKER
Both provided information that helped solve the issue.
^
Yeah, I was wondering about that as well, ...I have never seen this error...?
Yeah, I was wondering about that as well, ...I have never seen this error...?
great, thanks
;-)
Jeff
;-)
Jeff
[EmployeeFirstName].Value & " " & [EmployeeLastName].Value