I have a query that queries another query (which renames a Field called Date to ProductionDate)
The following Query Works
SELECT PostFallsRenamingqry.Produ
ctionDate,
PostFallsRenamingqry.Type
FROM PostFallsRenamingqry;
But, when i add a Group By Line
SELECT PostFallsRenamingqry.Produ
ctionDate,
PostFallsRenamingqry.Type
FROM PostFallsRenamingqry
GROUP BY PostFallsRenamingqry.Type;
I get an Error Message that I am Using Production Date as part of an expression that is not part of an Aggregate Function (See Attached Message Screen Shot)
Can anyone explain what is happening here?
Start Free Trial