I have imported all our Shopping ads data into BQ and are now trying to get nr of impressions for one campaign during one day. But the result i get is around 100 times higher then nr in Google Ads, same if i get nr of Clicks. Any ideas?
SELECT > shopping.date, > name.CampaignName, > SUM(shopping.Impressions) AS Impressions > FROM > `xxxxxx.google_cost_dataset.ShoppingProductStats_xxxxxxxxxx` AS shopping > INNER JOIN > `xxxxxx.google_cost_dataset.Campaign_xxxxxxxxxx` AS name > ON > shopping.CampaignId = name.CampaignId > WHERE > date = "2019-07-01" > AND CampaignName = "se_google_generic_shopping" > > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/796dc467-f7d1-402e-8495-0edc81704d37%40googlegroups.com.
