SQSunshine
Technical User
I currently have an Access table with a few demographic fields and 36 "Item" fields, named "ITEM1", ITEM2", ITEM3" etc., with numerical data in each field. There are thousands of records within this table. I need to switch the current horizontal orientation of this table to a vertical layout, with the same demographic fields, but with one field, "ITEMNUM" for example, which contains "ITEM"1", ITEM2", etc as records, and another field, "ITEMDATA" for example, which contains the data for each item. Is there a relatively easy way to do this, or do I have to create 36 queries and append the data to another table?
Ex of current table:
ID,DOB,ITEM1,ITEM2,ITEM3
1,1/1/1966,4,3,4
2,2/2/1955,3,3,4
3,7/1/1959,2,1,4
Example of needed table:
ID,DOB,ITEMNUM,ITEMDATA
1,1/1/1966,ITEM1,4
1,1/1/1966,ITEM2,3
1,1/1/1966,ITEM3,4
2,2/2/1955,ITEM1,3
2,2/2/1955,ITEM2,3
2,2/2/1955,ITEM3,4
3,7/1/1959,ITEM1,2
3,7/1/1959,ITEM2,1
3,7/1/1959,ITEM3,4
Thanks for any help someone can give me.
SQ
Ex of current table:
ID,DOB,ITEM1,ITEM2,ITEM3
1,1/1/1966,4,3,4
2,2/2/1955,3,3,4
3,7/1/1959,2,1,4
Example of needed table:
ID,DOB,ITEMNUM,ITEMDATA
1,1/1/1966,ITEM1,4
1,1/1/1966,ITEM2,3
1,1/1/1966,ITEM3,4
2,2/2/1955,ITEM1,3
2,2/2/1955,ITEM2,3
2,2/2/1955,ITEM3,4
3,7/1/1959,ITEM1,2
3,7/1/1959,ITEM2,1
3,7/1/1959,ITEM3,4
Thanks for any help someone can give me.
SQ