
Originally Posted by
Minty
If you open your present query and click on SQL View it will give you the SQL Query text of your current query.
Copy and paste that here and we can probably assist.
Here is the SQL text. It's "PayType" field that I would like to do this to.
Code:
SELECT DISTINCTROW [combine sheet].Cat, [combine sheet].VendorID, [combine sheet].Address1, [combine sheet].Address2, [combine sheet].City, [combine sheet].ST, [combine sheet].Zip, [combine sheet].PayType, [combine sheet].IDName, Sum([combine sheet].Amount) AS [Sum Of Amount]
FROM [combine sheet]
GROUP BY [combine sheet].Cat, [combine sheet].VendorID, [combine sheet].Address1, [combine sheet].Address2, [combine sheet].City, [combine sheet].ST, [combine sheet].Zip, [combine sheet].PayType, [combine sheet].IDName;