Single line output from Query

  • Thread starter Thread starter Lalatech
  • Start date Start date
L

Lalatech

Hi I want to create an export wher weare collecting more than on valie for an
ID into one singel field. Sample shown below

Table
ID Value
1 text1
1 text2
1 text3

Output wanted
ID Value
1 text1 | text2 | text3

Can some one help
 
Hi I want to create an export wher weare collecting more than on valie for an
ID into one singel field. Sample shown below

Table
ID       Value
1         text1
1         text2
1         text3

Output wanted
ID      Value
1        text1 | text2 | text3

Can some one help

Personally, I would store it properly and turn it into a non-
normalized format using a query... something like fConcatChild at
www.mvps.org/access

but it's your data.
 
Hi I want to create an export wher weare collecting more than on valie for an
ID into one singel field. Sample shown below

Table
ID       Value
1         text1
1         text2
1         text3

Output wanted
ID      Value
1        text1 | text2 | text3

Can some one help

Personally, I would store it properly and turn it into a non-
normalized format using a query... something like fConcatChild at
www.mvps.org/access

but it's your data.
 
Back
Top