Hi everybody,
Here's the code that I'm working on in an MS Access query:
SELECT Year, plantCode, FreightCost FROM qryCorrectFreightCost
UNION ALL
SELECT Year, plantCode, FreightCost FROM qryOtherFreightSum
GROUP BY plantCode, Year, FreightCost;
This works fine, but afterward I want to Sum...