When I try to create a Report based on the following SELECT query in Micorsoft Access, i get the message "Syntax error (missing operator) in query expression 'Livestock>Mob Name/#'. The query itself works fine but when trying to put it into a report it comes up with the error.
SELECT
[Load DSE in Paddocks Currently].Livestock.[Mob Name/#],
Paddock.Paddock, Paddock.[Stocking rate],
[Load DSE in Paddocks Currently].Livestock.[Load(DSE)]
FROM
Paddock
LEFT JOIN
[Load DSE in Paddocks Currently] ON Paddock.[Paddock] = [Load DSE in Paddocks Currently].[Livestock Movement].[Moved In Paddock(s)].[Value]
WHERE
((([Load DSE in Paddocks Currently].[Livestock Movement].[Moved In Paddock(s)].Value) IS NOT NULL));
FROM Paddock LEFT JOIN [Load DSE in Paddocks Currently] ON Paddock.[Paddock] = [Load DSE in Paddocks Currently].[Livestock Movement].[Moved In Paddock(s)].[Value] WHERE ((([Load DSE in Paddocks Currently].[Livestock Movement].[Moved In Paddock(s)].Value) Is Not Null));'
I want the report to be grouped by Paddocks with mobs and their DSE load summed under each paddock.