Can I generate a query to split the campaign spend by city even though the campaign weren't targeted to specific cities?
I'm currently using the query below but it seems to only work on campaigns that was targeted towards specific cities. My guess is that I should use something different than campaign_criterion.location.geo_target_constant
SELECT
segments.date,
customer.descriptive_name,
campaign_criterion.location.geo_target_constant,
customer.currency_code,
metrics.cost_micros
FROM
location_view
WHERE
segments.date BETWEEN '{}' AND '{}'