Hi Jon K,
your Concatenate Multiple Rows Access 2000 code is an excellent piece of code that has saved me a lot of times.
But i want to ask for something more complicated if you can help me .
I need a small adjustment of that piece of code but i am confused.
I want the concatenated field to include only distinct values
for example,when i concatenate multiple rows and the result is something like this: 1,1,2,1,3,3,4,1,3,2
i would prefer the rusult be 1,2,3,4
I tried to change the piece of code that refers to:
Do While Not rs.EOF
If Not IsNull(rs!Fld) Then
vFld = vFld & ", " & rs!Fld
End If
rs.MoveNext
Loop
but i dont know a lot of Functions and i got confused and couldnt make it work!
I think it will be a piece of cake for you
Can you help me??
Thank you in advance!!