How do you combine characters from one field and append an auto number to it in microsoft access? |
[Edit] |
If Field is named XField and has value say "XXXX"
If Autonum Field is named AutoNumField value 123
If Combined Field is named CombFld
CombFld = XField & AutonumField (XXXX123)
OR
CombFld = XField & trim(str(AutonumField))
must have trim or answer will have space between alpha and numeric parts
First answer by Donaldmaloney. Last edit by Donaldmaloney. Contributor trust: 23 [recommend contributor]. Question popularity: 13 [recommend question]
|
Research your answer: |



