You save the totals (group by) query as a saved query (qryMyCombinedUniqueData) then create a new append query based on it:
SELECT INTO .... SELECT * FROM qryMyCombinedUniqueData;

Cheers,