How do I concatenate two fields whereas the first field is 5 digits and the 2nd field is 12. The problem I'm having is that sometimes the first field is only 4 characters and I need to include the space in my concatenation. Not all of the records are 4 digits though so I need the statement to work on either. What it's doing is chopping off the space in the first field and continueing on with the 2nd field entry. That won't work. Any help you can provide is greatly appreciated:
SELECT [NWD0315]![Model] & [NWD0315]![Serial] AS concat, NWD0315.[Sale Type]
FROM NWD0315;
Thank you,
Laura
SELECT [NWD0315]![Model] & [NWD0315]![Serial] AS concat, NWD0315.[Sale Type]
FROM NWD0315;
Thank you,
Laura