Skip to content

Instantly share code, notes, and snippets.

@mattm
Last active October 1, 2018 20:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattm/674fc3938d5e0712c2a486f8da9d3bc5 to your computer and use it in GitHub Desktop.
Save mattm/674fc3938d5e0712c2a486f8da9d3bc5 to your computer and use it in GitHub Desktop.
Facebook Ad Insights Conversion Value
select
campaign_id,
sum(value) as total_conversion_value
from facebook_ad_insights.ad_insights_action_values
where
action_type = 'offsite_conversion.fb_pixel_purchase' and
date = '2018-10-01'
group by 1
order by 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment