Concatenate

Echo_3

New member
Local time
Today, 03:32
Joined
Aug 24, 2001
Messages
7
I needd to concatenate two fields. Why isn't this working?

SELECT Concatenate([Beach Contracts with Name].[Contract#],[Beach Contracts with Name].[Add-On]) AS ContractGuide
FROM [Beach Contracts with Name];
 
Echo_3

Try with:

SELECT [Beach Contracts with Name].[Contract#], [Beach Contracts with Name].[Add-On], [Contract#] & [Add-On] AS ContractGuide
FROM [Beach Contracts with Name];

HTH

[This message has been edited by Graham T (edited 05-24-2002).]
 
THANK YOU!!!!!! It works!!!!!!!!

Perfect. This is the best site to get answers for my Access questions!!
 

Users who are viewing this thread

Back
Top Bottom