Jump to content

Help working with data


mclamais

Recommended Posts

I've done this in MS Access using a crosstab query

 

TRANSFORM First(Table1.name) AS FirstOfname

SELECT Table1.fid, First(Table1.name) AS [Total Of name]

FROM Table1

GROUP BY Table1.fid

PIVOT Table1.ID;

 

and then concatenation

 

SELECT Table1_Crosstab.fid, [1] & ", " & [2] & ", " & [3] & ", " & [4] & ", " & [5] AS tag

FROM Table1_Crosstab;

 

to produce what you need.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.