I've got the following result in a query, in an Access 2010 database:
Name Column1 Column2 Column3
-----------------------------------------------------------
Example1 52 447 52447
Example1 52 455 52455
Example1 52 454 52454
Example1 52 453 52453
Example2 100 000 100000
Example2 101 001 999999
I need to transform this data, concatenating each column to a single row, something like:
Name Column1 Column2 Column3
------------------------------------------------------------------
Example1 52 447,455,454,453 52447,52455,52454,52453
Example2 100,101 000,001 100000, 999999
As I'm still new into Access, I searched for a VBA function for this, but every single function I found disconsidered a point that is important for me:
Some of these rows' columns have more than 255 characters (number of characters summed), so I won't be able to use the functions I found;
Here's a topic that treats a similar case, but it still doesn't match a solution for me:
Microsoft Access condense multiple lines in a table
And this, by Allen Browne: http://allenbrowne.com/func-concat.html
Can someone please help?
Regards,