Hi Team!
I'm trying to get the data from location_view breakdown by campaign. but missing one of campaign which could found in campaign view?
SELECT
location_view.resource_name,
campaign_criterion.location.geo_target_constant,
metrics.conversions_value,
metrics.clicks,
metrics.ctr,
metrics.impressions,
metrics.average_cpm,
metrics.cost_micros,
campaign.id,
campaign.name, segments.date FROM location_view
where metrics.impressions > 0 AND segments.date DURING YESTERDAY
I'm sure impression > 0 is true
Can you please tell me how to fix it?
Thank you very much for your help