E Echo_3 New member Local time Today, 03:32 Joined Aug 24, 2001 Messages 7 May 24, 2002 #1 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];
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];
Graham T Registered User. Local time Today, 03:32 Joined Mar 14, 2001 Messages 300 May 24, 2002 #2 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).]
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).]
E Echo_3 New member Local time Today, 03:32 Joined Aug 24, 2001 Messages 7 May 24, 2002 #3 THANK YOU!!!!!! It works!!!!!!!! Perfect. This is the best site to get answers for my Access questions!!
THANK YOU!!!!!! It works!!!!!!!! Perfect. This is the best site to get answers for my Access questions!!