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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Adding characters to either side of a field value. 1

Status
Not open for further replies.

amourdevin

Technical User
Sep 7, 2003
21
0
0
US
I have a report:

[EmployeeID] [LastName] [FirstName]

I want to repeat the EmployeeID field but have an asterisk added to either side of the value so it ultimately can be used with a 3of9 barcode reader:

[EmployeeID] [LastName] [FirstName] *[EmployeeID]*

I do not need help repeating EmployeeID, just getting asterisks on either side of it.

Thanks in advance!
 
You would need to set up the field as follows -

'*'&[EmployeeID]&'*'

HTH,

Steve
 
Great!

That worked!!

I have another problem now. I previously used the format 00000 to force employee number to be five digits (leading zeros if necessay). I lost that feature now.
 
For clarity's sake:

EmployeeID was: 00017, 00123, 71060, etc.

The new field produces: *17*, *123*, *71060*, etc.
 
I expect your field is storing a numeric value rather than text so a format was used to display leading 0s

"*" & Format([EmployeeID],"00000") & "*"


Duane
MS Access MVP
Find out how to get great answers faq219-2884.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top