SELECT
campaign.advertising_channel_type,
customer.descriptive_name,
metrics.interactions,
metrics.impressions,
metrics.clicks,
metrics.video_views,
metrics.all_conversions,
metrics.cost_micros,
segments.date,
segments.geo_target_region,
ad_group.type
FROM geographic_view
WHERE segments.date >= '2020-12-01' AND segments.date <= '2021-12-31'
Using this query my cost_micros is 1098570138998.0
How ever the cost in my console is 1103011621635.0
When I remove segments.geo_target_region from my query then my cost_micros matches the same as the one in my console.
Not sure what is happening. Appreciate any help.