Hi,
Thanks for your message.
Let me explain it.
Suppose a campaign has 100 clicks
By selecting from geographic_view I would see 30 clicks from users in Caniformia and 70 clicks in Washington;
and by age_range_view I would see 40 clicks from 20~29 yrs old users and 60 clicks from 30~39 yrs old;
While what I really want is
10 clicks from 20~29 yrs old in Caniformia
20 clicks from 30~39 yrs old in Caniformia
30 clicks from 20~29 yrs old in Washington
40 clicks from 30~39 yrs old in Washington
More specific, I tried this GAQL
SELECT
campaign.id,
segments.geo_target_city,
segments.date,
metrics.clicks
FROM age_range_view WHERE segments.date BETWEEN "2024-10-01" AND "2024-10-02" AND metrics.impressions > 0
It does not work and results in an error
"select or filter on the following segments: 'segments.geo_target_city'(could not support requested resources: 'AGE_RANGE_VIEW'), since segment is incompatible with the resource in the FROM clause"
I can hardly figure out why those segments are not compatible. Or should I try something else ?