ads_import_conv
Presentation of the aggregation table of conversions from advertising platforms.
Last updated
Was this helpful?
Presentation of the aggregation table of conversions from advertising platforms.
Last updated
Was this helpful?
ads_import_conv is a pre-built table that allows for the consolidation of conversion and conversion_value from all platforms into a single table.
`your-project`.quanti.aggregation.ads_import_conv
date
DATE
quanti_id
STRING
platform_conversion
INT64
platform_conversion_value
FLOAT64
The primary keys of the table are:
date
: aggregates the data daily.
quanti_id
: aggregates data at a "ad" level. The quanti_id
allows, via 'tracking templates,' to insert this information into campaign parameters (traditionally called UTM parameters) in order to link ad-centric information with site-centric information.
The metrics of the table are:
platform_conversion : which accounts conversions
platform_conversion_value : which accounts values of the conversions.
It is possible to have the pre-built table ads_import_conv
with performance distinctions by events/conversions. Instead of having generic columns platform_conversion
and platform_conversion_value
, the idea is to have one column counting conversions and another column counting conversion values for each conversion.
Metrics are all prefixed by platform_conversion
followed by the ID assigned by the advertising platform. The conversion values are all suffixed by _value.
On Google Ads, if you track a conversion purchase
with the conversion ID 12345678 (automatically assigned by Google), you will find its conversion values in the metrics:
platform_conversion_12345678
that counts the number of this conversion.
platform_conversion_12345678_value
that counts value associated with this conversion.