Link to home
Start Free TrialLog in
Avatar of exp vg
exp vg

asked on

Access - Similar to Excel - Paste Special Transpose

Hello

In Excel this transpose of a table is easy. Please offer a query way I can transpose a table in Access as well.

Thank you.
SOLUTION
Avatar of Robert Sherman
Robert Sherman
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of exp vg
exp vg

ASKER

I am working on creating an automated system for people other than myself, so the less steps they have to do the better.

If I can create all of these queries in Access itself, and export it to excel in as near to final format, the easier it will be on them.

Thanks.
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of exp vg

ASKER

Yes, i came across this in my research as well. What i am looking for is if this is possible in an Access query.

Thank you.
Hi

Please see if this helps  

TRANSFORM  Table1.Column3
SELECT Table1.Column1
FROM Table1
GROUP BY Table1.Column1
PIVOT Table1_1.Column2;

This will transpose  Column2 using Column1 ids i.e for each column1 id it will look in Column2 and transpose it

Column1  |  Column2 |   Column3
--------------------------------------------------------------------
       11       |     Value1  |        1
       11       |     Value2  |         2
       11       |     Value3  |        3


Column1_ID  |     Value1  | Value2  |  Value3
11                    |      1           |  2           |  3