I have a table generated by a query in Access as something like this--
Id | length | Height | Diameter | code |
---|---|---|---|---|
1-X(C1) | 1 | 4 | 100 | S W |
1-Y(C2) | 3 | 7 | 200 | N |
which I want to change to --
Id | Feature | Value |
---|---|---|
1-X(C1) | length | 1 |
1-X(C1) | Height | 4 |
1-X(C1) | Diameter | 100 |
1-X(C1) | code | S W |
1-Y(C2) | length | 3 |
1-Y(C2) | Height | 7 |
1-Y(C2) | Diameter | 200 |
1-Y(C2) | code | N |
I have tried using UNPIVOT function but it doesn't work, I want the feature to be in a particular order(length, height, diameter, code) I am using Access query design, is there a way to do this?
You have to UNION 4 queries. Something like:
Not sure value is not a reserved word ?
Since [value] is going to contain a mix of text and number, I guess you will have to convert it all to text. I did it for the first row, just to show.