I have a field on a form that I would like to auto populate with the (concatenated) contents of 3 other fields on the same form. The first 2 fields are drop down boxes and the 3rd is a hand keyed text field.
For example, the first field is Department (4 digit number from drop down box)
Second field is Document Type (3 letter code from drop down box)
Third Field is Document Seq Number (5 digit number hand keyed)
So if I pick 0100 from field1, PCS from field2, and hand key 10000, in my 4th field (called Document ID), I should wind up with 0100PCS10000.
Currently, I have the control source for the Document ID field as
=([Department] & [Document Type] & [Document Seq Number])
In the example above, instead of getting 0100PCS10000, my result is 1110000.
Any help in getting me to the result I am looking for would be greatly appreciated.
For example, the first field is Department (4 digit number from drop down box)
Second field is Document Type (3 letter code from drop down box)
Third Field is Document Seq Number (5 digit number hand keyed)
So if I pick 0100 from field1, PCS from field2, and hand key 10000, in my 4th field (called Document ID), I should wind up with 0100PCS10000.
Currently, I have the control source for the Document ID field as
=([Department] & [Document Type] & [Document Seq Number])
In the example above, instead of getting 0100PCS10000, my result is 1110000.
Any help in getting me to the result I am looking for would be greatly appreciated.