I have 4 field in my table :
NO. | Specification | Specification Value | Description
1 Color Blue a
1 Size 6" a
2 Color Red b
2 Size 8" b
I am trying to Pivot it and its giving me an error.
TRANSFORM FIRST(Specification Value)
SELECT items.'No.'
FROM items
GROUP BY items.'No.'
PIVOT Specification
The error is : "Syntax error(missing operator) in query expression 'FIRST(Specification Value)'."
Please help. Thank you