SELECT [US Platinum].[Mailing Date], Sum([US Platinum].[Unique click], [US Brown.Unique Click], [US Gold.Unique Click] [US GameClub.Unique Click]) AS sum[SumOfUnique click1]
FROM [US Brown], [US GameClub], [US Gold], [US Platinum]
GROUP BY [US Platinum].[Mailing Date];
This is a query written from other queries. I attached an example of the "Platinum" query. Each one I am using has the same colums. I am trying to get the sum of each catagory (US Brown, Gold Platinum etc.) and create a new aggregate query.
Getting an error with the Select satement..Thanks
FROM [US Brown], [US GameClub], [US Gold], [US Platinum]
GROUP BY [US Platinum].[Mailing Date];
This is a query written from other queries. I attached an example of the "Platinum" query. Each one I am using has the same colums. I am trying to get the sum of each catagory (US Brown, Gold Platinum etc.) and create a new aggregate query.
Getting an error with the Select satement..Thanks