Good Afternoon
I need some help transposing columns to rows based on ITEM number. I am using SQL but can't seem to figure it out.
My qry_Table
Field1 Field2
ITEM 1
ASSET 12345
MODEL 1234ABC
ITEM 2
ASSET 12346
MODEL A1B2C3
ITEM 3
ASSET 12347
MODEL 1ABC456
My desired results
ITEM ASSET MODEL
1 12345 1234ABC
2 12346 A1B2C3
3 12347 1ABC456
1) I need to make the items on Column Field1 the Row Headers
2) I need to make the items in Column Field2 the data based on the ITEM number.
I would appreciate any help.
Thank You
I need some help transposing columns to rows based on ITEM number. I am using SQL but can't seem to figure it out.
My qry_Table
Field1 Field2
ITEM 1
ASSET 12345
MODEL 1234ABC
ITEM 2
ASSET 12346
MODEL A1B2C3
ITEM 3
ASSET 12347
MODEL 1ABC456
My desired results
ITEM ASSET MODEL
1 12345 1234ABC
2 12346 A1B2C3
3 12347 1ABC456
1) I need to make the items on Column Field1 the Row Headers
2) I need to make the items in Column Field2 the data based on the ITEM number.
I would appreciate any help.
Thank You