Please help make this work, I have tried any number of different ways to escape the quotes and not one of them has worked.
It always comes up with a Syntax error, which tells me that I am just not trying it properly and HOPEFULLY someone out there will know the correct syntax
Any help that anyone can give will be much appreciated.
It always comes up with a Syntax error, which tells me that I am just not trying it properly and HOPEFULLY someone out there will know the correct syntax
Code:
TRANSFORM Sum(Backlog.Volume) AS SumOfVolume
SELECT Backlog.SupplyingCompanyID, Sum(Backlog.Volume) AS [Total Of Volume]
FROM Backlog
GROUP BY Backlog.SupplyingCompanyID
PIVOT Format([MonthEnding],"mmm 'yy") In ("Jan '" & YEAR(CURDATE()), ... {through to Dec});
Comment