A SaaS company was over investing in paid search because it appeared to be the primary driver of leads. However, the last-click model was ignoring the role of organic content in the early research phases of the 6-month sales cycle.
Visualization: Mapping the 16-day journey from Organic discovery to Paid conversion.
Organic Search undervalued at $25k. Paid Search claims 100% credit.
True organic value of $90k revealed by tracing the full path.
/* SQL: Calculating Assisted Conversion Ratios */
SELECT
channel_grouping,
last_click_conversions,
assisted_conversions,
ROUND(SAFE_DIVIDE(assisted_conversions, last_click_conversions), 2) AS assisted_ratio
FROM `analytics_data.attribution_summary`
WHERE conversions > 0
ORDER BY assisted_ratio DESC;