Z zezo2021 Member Local time Today, 22:41 Joined Mar 25, 2021 Messages 412 Nov 21, 2022 #1 friends as attached image if the client duplicated can I merge the fields value with "," for each field in one row as the sample attached Attachments Screenshot_1.png 41.3 KB · Views: 86
friends as attached image if the client duplicated can I merge the fields value with "," for each field in one row as the sample attached
Minty AWF VIP Local time Today, 21:41 Joined Jul 26, 2013 Messages 10,659 Nov 21, 2022 #2 You can using a function such as the one below Code Snippets
Z zezo2021 Member Local time Today, 22:41 Joined Mar 25, 2021 Messages 412 Nov 21, 2022 #3 Please check this DB Sample with the function the function is great for stack over flow but the query give me an empty row Can you pls fix the error Attachments Database4.accdb Database4.accdb 544 KB · Views: 91
Please check this DB Sample with the function the function is great for stack over flow but the query give me an empty row Can you pls fix the error
Z zezo2021 Member Local time Today, 22:41 Joined Mar 25, 2021 Messages 412 Nov 21, 2022 #4 thanks, friends if find the solution with qoutation ------------- SELECT T.ColumnA, GetList("Select ColumnB From Table1 As T1 Where T1.ColumnA = '" & [T].[ColumnA] & "'","",", ") AS ColumnBItems FROM Table1 AS T GROUP BY T.ColumnA; -----------
thanks, friends if find the solution with qoutation ------------- SELECT T.ColumnA, GetList("Select ColumnB From Table1 As T1 Where T1.ColumnA = '" & [T].[ColumnA] & "'","",", ") AS ColumnBItems FROM Table1 AS T GROUP BY T.ColumnA; -----------