K
Karl
I am trying to Concatenate some rows in access to columns. I tried a
previously provided answer on the message board, but I keep getting an error.
“Undefined function ‘concatenate’ in expressionâ€
I am using the following select query:
SELECT Languages.AddressID, Concatenate("SELECT description FROM
tbllanguages WHERE addressID =""" & [addressID] & """") AS [Language]
FROM Languages;
I copied the module from the following:
http://www.rogersaccesslibrary.com/OtherLibraries.asp#Hookom,Duane
This is how my data is now:
AddressID Description
33402 Spanish
36112 French
36112 Spanish
36112 Portuguese
And I am trying to reflect this:
AddressID Description
33402 Spanish
36112 French, Spanish, Portuguese
Any help would be great
Karl
previously provided answer on the message board, but I keep getting an error.
“Undefined function ‘concatenate’ in expressionâ€
I am using the following select query:
SELECT Languages.AddressID, Concatenate("SELECT description FROM
tbllanguages WHERE addressID =""" & [addressID] & """") AS [Language]
FROM Languages;
I copied the module from the following:
http://www.rogersaccesslibrary.com/OtherLibraries.asp#Hookom,Duane
This is how my data is now:
AddressID Description
33402 Spanish
36112 French
36112 Spanish
36112 Portuguese
And I am trying to reflect this:
AddressID Description
33402 Spanish
36112 French, Spanish, Portuguese
Any help would be great
Karl