I was trying to run the following simple query which selects only 2 fields and I pass in 2 campaign ids.
SELECT Criteria, Impressions FROM AGE_RANGE_PERFORMANCE_REPORT WHERE CampaignId IN [673973465, 654021300]
DURING 20160901, 20170118
The DOC says that the result will be aggregated by age range but I instead get the following data with multiple rows with same values for age range. For eg.. I have 2 rows with 18-24 for Age range.
Can someone please help and take a look at this issue.
Age Range,Impressions
18-24,337196
25-34,193111
35-44,174062
18-24,3245
25-34,2742
35-44,1925
Total,712281
Thanks.