Mumbai, India
Free Resource

How to Track Conversions in Google Ads Without Losing Data

A complete setup guide for Google Ads conversion tracking covering the Google tag, Google Tag Manager, enhanced conversions, GA4 integration, and Consent Mode v2. Written for marketers who need accurate data, not just a pixel on a thank-you page.

Last updated: March 2026 · 13 min read

The Short Answer

What is Google Ads conversion tracking?

Google Ads conversion tracking measures the actions people take after clicking or viewing your ads, from form submissions and phone calls to purchases and app installs.

Google Ads conversion tracking connects ad clicks to business outcomes. Without it, you’re optimizing based on clicks and impressions, which is like driving with your eyes closed. With it, you know which keywords, ads, and audiences generate actual leads and revenue. The setup has changed significantly since 2023. Cookie deprecation concerns, privacy regulations, and Google’s own infrastructure changes mean the “just paste a tag on the thank-you page” approach is no longer sufficient. In 2026, accurate conversion tracking requires the Google tag (or GTM), enhanced conversions, and Consent Mode v2 working together. This guide covers all three. We manage Google Ads accounts across BFSI, healthcare, D2C, and SaaS at ScaleGrowth.Digital. Advertisers using enhanced conversions typically see a 5-15% increase in reported conversions compared to standard tracking alone (Google Ads Help, 2026). That gap represents real conversions you’re missing, and real budget decisions you’re making with incomplete data.

“I’ve audited Google Ads accounts where 30-40% of conversions were being lost because tracking was set up in 2021 and never updated. Enhanced conversions and server-side tagging aren’t optional anymore. If your tracking stack hasn’t changed in two years, you’re making budget decisions on bad data.”

Hardik Shah, Founder of ScaleGrowth.Digital

In This Guide

What this conversion tracking guide covers

  1. Define your conversion actions
  2. Create conversion actions in Google Ads
  3. Install the tracking tag via Google Tag Manager
  4. Set up enhanced conversions for better accuracy
  5. Connect GA4 conversions to Google Ads
  6. Implement Consent Mode v2 for compliance
  7. Verify and debug your tracking setup
  8. Pro tips from managing $2M+ in ad spend
  9. Tracking mistakes that burn budget
  10. Frequently asked questions
Step 1

What counts as a conversion for your business?

Before you touch any code, define what “conversion” means for your specific business. Google Ads supports multiple conversion types, and tracking the wrong ones leads to bad optimization signals. Google breaks conversion actions into three buckets: Leads (form submissions, quote requests, appointment bookings), Sales (add-to-cart, checkout, purchase), and Further Actions (page views, video plays, scrolls).

A primary conversion is the action you want Google’s algorithm to optimize toward. A secondary conversion is tracked for observation only and doesn’t influence bidding. Getting this distinction wrong is the #1 tracking mistake we see.

Business Type Primary Conversion Secondary Conversions
Lead generation Qualified form submission Phone call (60s+), chat initiated, PDF download
E-commerce Purchase (with value) Add to cart, begin checkout, wishlist add
SaaS Free trial signup or demo request Pricing page view, feature page engagement
Local service Phone call or appointment booking Direction request, contact page view
For lead generation businesses, avoid tracking page views as primary conversions. A thank-you page view that fires after every form submission is fine. A “contact us” page view is not a conversion, and including it as one inflates your numbers and confuses Smart Bidding.
Step 2

How do you create conversion actions in Google Ads?

Log into Google Ads. Go to Goals > Conversions > Summary. Click the blue “+” button. Select your conversion source: Website, App, Phone calls, or Import. For most businesses, select “Website.” Configure these settings for each conversion action:
  • Conversion name: Use a clear naming convention. We use: [Type] – [Action] – [Source]. Example: “Lead – Form Submit – Landing Page A”
  • Category: Select the correct category (Submit lead form, Purchase, etc.). This affects how Google reports and optimizes.
  • Value: For e-commerce, use dynamic values from the data layer. For lead gen, assign a static value based on average deal size times close rate. A lead worth $5,000 with a 20% close rate has a conversion value of $1,000.
  • Count: “Every” for purchases (each sale matters), “One” for leads (multiple form fills from the same person shouldn’t count as multiple leads).
  • Click-through window: Default is 30 days. For B2B with longer sales cycles, extend to 60 or 90 days.
  • Attribution model: Use data-driven attribution unless you have a specific strategic reason not to. Google retired last-click as the default in 2023, and data-driven gives a more accurate picture of the full conversion path.
After creating the action, Google generates a Conversion ID and Conversion Label. You’ll need both for the next step.
Step 3

How do you install tracking via Google Tag Manager?

Google Tag Manager (GTM) is the recommended installation method. It separates your tracking code from your website code, which means marketers can update tags without waiting for developers. If you’re not using GTM yet, set it up first: create a container at tagmanager.google.com, then add the GTM snippet to your site’s <head> and <body> tags. Step 3a: Add the Google Ads conversion tracking tag. In GTM, click Tags > New. Select “Google Ads Conversion Tracking.” Enter the Conversion ID and Conversion Label from Step 2. Set the trigger to fire on your conversion event (e.g., a thank-you page view, a form submission event, or a custom data layer push). Step 3b: Add the Google Ads remarketing tag. Create a second tag: “Google Ads Remarketing.” Enter only the Conversion ID. Set the trigger to “All Pages.” This tag enables audience building for remarketing campaigns and provides enhanced conversion data to Google’s algorithm. Step 3c: Configure the conversion linker. Add a “Conversion Linker” tag in GTM set to fire on all pages. This tag reads the GCLID (Google Click ID) from the URL and stores it in a first-party cookie. Without it, cross-domain tracking breaks and conversions from Safari/Firefox may not attribute correctly. Step 3d: Use the data layer for dynamic values. For e-commerce, push transaction data (order ID, value, currency, items) to the data layer on the purchase confirmation page. Map these data layer variables in GTM and connect them to your conversion tag’s value and order ID fields. This enables per-transaction reporting in Google Ads.
GTM Tag Purpose Trigger
Google Ads Conversion Tracking Fires on specific conversion events Thank-you page / form submit / purchase
Google Ads Remarketing Builds audience lists, feeds algorithm All pages
Conversion Linker Stores GCLID, enables attribution All pages
Step 4

How do you set up enhanced conversions?

Enhanced conversions are the single most impactful improvement you can make to your conversion tracking accuracy in 2026. Standard tracking relies on cookies to connect ad clicks to conversions. Enhanced conversions add a second signal: hashed first-party data that the user voluntarily provides (email address, phone number, name, or address). Here’s how it works: when someone submits a form on your site, enhanced conversions capture that data, hash it using SHA-256 (the data never leaves your server in plain text), and send the hash to Google. Google matches it against its logged-in user base to confirm the conversion. This recovers conversions lost to cookie blocking, cross-device behavior, and delayed attribution. Setup via GTM (recommended):
  1. In Google Ads, go to Goals > Conversions > Settings. Turn on “Enhanced conversions.” Select “Google Tag Manager” as your method.
  2. In GTM, edit your existing Google Ads Conversion Tracking tag. Scroll to “Include user-provided data from your website.” Check the box.
  3. Configure the data source. You have two options: “Automatic collection” (GTM scrapes form fields automatically) or “Manual” (you specify CSS selectors or data layer variables for email, phone, etc.).
  4. For most sites, “Automatic collection” works. GTM detects email and phone fields from standard HTML form elements. For custom forms or SPAs (single-page applications), use manual configuration with data layer variables.
  5. Test by submitting a test conversion. In Google Ads, the “Diagnostics” tab under your conversion action will show whether enhanced conversion data is being received.
According to Google’s own documentation, advertisers implementing enhanced conversions typically see a 5-15% increase in attributed conversions with no change in actual customer behavior. Those aren’t new conversions. They’re real conversions that standard tracking was missing.
Step 5

Should you import GA4 conversions into Google Ads?

Yes, but use GA4 as a secondary source, not a replacement for native Google Ads tracking. Native Google Ads conversion tags are faster (they fire immediately on the page) and support enhanced conversions. GA4 conversions rely on the GA4 tag, which has its own processing pipeline and can have 24-48 hour delays. Import GA4 conversions for actions that are hard to track with a simple tag: engaged sessions, scroll depth events, video completions, or cross-domain conversions where the user starts on one domain and converts on another. To import GA4 conversions into Google Ads:
  1. First, ensure your GA4 property and Google Ads account are linked. In GA4, go to Admin > Google Ads Links.
  2. In Google Ads, go to Goals > Conversions > Summary. Click “+”. Select “Import.” Choose “Google Analytics 4 properties.”
  3. Select the GA4 events you want to import as conversions. Mark them as primary or secondary based on whether you want Smart Bidding to optimize toward them.
Important: Never track the same conversion via both native Google Ads tags AND GA4 import. This creates double-counting. Pick one source per conversion action. Our recommendation: use native Google Ads tags for your primary conversions (form submissions, purchases) and GA4 imports for behavioral conversions (engaged sessions, content interactions).
Step 6

How does Consent Mode v2 affect conversion tracking?

Consent Mode v2 is Google’s framework for respecting user privacy choices while preserving conversion measurement. If you serve users in the European Economic Area (EEA) or UK, implementation has been mandatory since March 2024. Without it, Google restricts remarketing audiences and ad personalization features. Even for US-only advertisers, Consent Mode improves data quality by enabling conversion modeling. How Consent Mode v2 works: Your cookie consent banner communicates with Google’s tags through two signals: ad_storage (controls advertising cookies) and analytics_storage (controls analytics cookies). When a user denies consent, tags fire in a restricted mode, sending “cookieless pings” to Google instead of full measurement data. Google uses these pings plus machine learning to model the conversions it can’t directly observe. Basic vs. Advanced mode:
Mode Behavior When Consent Denied Data Sent Modeling Accuracy
Basic Google tags don’t load at all Zero data until consent granted No modeling possible
Advanced Google tags load, fire cookieless pings Anonymous pings with limited signals Google models conversions from pings
We recommend Advanced mode. It preserves measurement while respecting privacy. Basic mode is compliant but creates large data gaps that degrade Smart Bidding performance over time. To implement, work with your consent management platform (CMP). Popular CMPs like Cookiebot, OneTrust, and Cookie Script integrate with Google Consent Mode v2 via GTM templates. The CMP updates the consent state, and GTM automatically adjusts how each tag behaves.
Step 7

How do you verify your conversion tracking is working?

Never assume your tracking works just because you deployed the tags. Verify with these four checks: Check 1: GTM Preview Mode. In Google Tag Manager, click “Preview.” Enter your site URL. GTM opens a debug panel showing which tags fire on each page. Submit a test conversion and confirm the conversion tag fires with the correct Conversion ID, Label, and value. Check 2: Google Tag Assistant. Install the Tag Assistant Chrome extension. Visit your site and verify the Google Ads tag, GA4 tag, and Conversion Linker all show green status. Red or yellow warnings indicate configuration issues. Check 3: Google Ads Diagnostics. In Google Ads, go to Goals > Conversions. Click on your conversion action. Select the “Diagnostics” tab. This shows whether Google has received recent conversion data, whether enhanced conversions data is flowing, and any implementation errors. Check 4: Real conversion test. Submit an actual conversion (use a test form, make a small test purchase). Wait 1-3 hours. Check Google Ads conversion reporting for the test conversion. If you used a unique order ID or test email, you can confirm it appeared. For enhanced conversions, the Diagnostics tab shows match rates within 48-72 hours of going live. Run this full verification after every GTM container change, website redesign, or CMS update. We’ve seen tracking break silently after WordPress plugin updates, theme changes, and server migrations. Quarterly audits of your tracking stack prevent budget waste from undetected data loss.
Pro Tips

What do high-performing advertisers do differently?

Use Offline Conversion Import

For B2B businesses, the real conversion happens in the CRM, not on the website. Upload offline conversions (closed deals, qualified leads) back into Google Ads using GCLID matching. This tells Smart Bidding which clicks generate revenue, not just form fills. Accounts using offline import consistently outperform those optimizing to online leads only.

Set Conversion Values, Even for Lead Gen

Assign dollar values to every conversion action based on pipeline data. A demo request worth $2,000 in average deal value at 15% close rate equals $300 per conversion. This enables value-based bidding (Target ROAS), which outperforms Target CPA for most lead gen accounts once you have 30+ conversions per month.

Audit Conversion Actions Every Quarter

Conversion actions accumulate. Teams add new ones without removing old ones. We’ve audited accounts with 15+ conversion actions where only 3 were still relevant. Dead conversion actions confuse Smart Bidding and inflate reported CPA. Review every action quarterly.

Test Server-Side Tagging

Server-side tagging via GTM Server Container sends conversion data from your server rather than the user’s browser. It bypasses ad blockers, reduces client-side JavaScript, and improves page speed. The setup is more complex (requires a cloud server), but for advertisers spending over $50K/month, the data quality improvement pays for itself.

Avoid These

What tracking mistakes burn the most budget?

Mistake 1: Counting page views as conversions. Tracking a “Contact Us” page view as a conversion inflates your numbers and tells Smart Bidding to optimize for curiosity, not intent. Only track completed actions (submitted forms, confirmed purchases, calls over 60 seconds) as primary conversions. Mistake 2: Double-counting with GA4 and native tags. If you fire a native Google Ads conversion tag on the thank-you page AND import the same event from GA4, every conversion counts twice. Your CPA appears half of what it actually is. Pick one source per action. Mistake 3: Using “Every” count for lead gen conversions. If a prospect submits the same form 3 times, that’s 1 lead, not 3. Set the count to “One” for lead generation conversions. Use “Every” only for e-commerce purchases where each transaction has independent value. Mistake 4: Never updating conversion windows. The default 30-day click-through window works for e-commerce. For B2B SaaS with 90-day sales cycles, you’re losing attribution on late-converting prospects. Match the window to your actual sales cycle length. Mistake 5: Ignoring enhanced conversions. Standard tracking in 2026 misses 10-30% of conversions due to cookie blocking, cross-device behavior, and Safari’s ITP. Enhanced conversions recover most of that gap. If you haven’t set it up, your reported performance is worse than reality, and your bid strategies are under-indexing on your best keywords.
Related Resources

What else should you use alongside this guide?

Google Ads Audit Checklist

A 40-point checklist covering account structure, bidding, targeting, ads, and tracking. Use it to review your entire account, not just conversion setup. Get Checklist

PPC Reporting Template

Our monthly PPC report template connects spend, conversions, and pipeline data in a format executives actually read. Get Template

UTM Builder Tool

Build consistent UTM-tagged URLs for your campaigns. Clean UTMs are the foundation of accurate attribution across Google Ads, GA4, and your CRM. Use Tool

FAQ

Frequently Asked Questions

Do I need Google Tag Manager for conversion tracking?

No, but GTM is strongly recommended. You can install the Google tag (gtag.js) directly in your site’s code, but GTM gives you version control, preview/debug mode, and the ability to update tags without deploying code changes. For any site running more than one tracking tag, GTM saves time and reduces errors.

What’s the difference between Google Ads conversions and GA4 conversions?

Google Ads conversions are tracked via the Google Ads tag and attribute conversions to ad clicks using GCLID. GA4 conversions are tracked via the GA4 tag and use a different attribution model (data-driven by default). The numbers will rarely match exactly because of different counting methods, attribution windows, and processing timelines. Use Google Ads native tracking as your primary source for bidding optimization.

Is Consent Mode v2 required for US advertisers?

As of early 2026, Consent Mode v2 is not legally required for US-only advertisers. However, it is mandatory for any advertiser serving users in the EEA or UK. Even for US-only accounts, implementing Consent Mode enables Google’s conversion modeling, which improves data accuracy as browser privacy restrictions increase. We recommend implementing it regardless of geography.

How many conversions do I need for Smart Bidding to work?

Google recommends at least 30 conversions in the last 30 days at the campaign level for Target CPA, and 50 conversions for Target ROAS. Below these thresholds, Smart Bidding lacks the data to optimize effectively. If you’re below these numbers, consider consolidating campaigns, using broader conversion actions temporarily, or using portfolio bid strategies that share data across campaigns.

How do I track phone call conversions from Google Ads?

Three options. First, Google Forwarding Numbers work with call extensions and call-only ads; Google provides a tracked number that routes to yours. Second, website call conversions use a dynamic number swap snippet that shows a Google tracking number on your site when a visitor arrived via Google Ads. Third, import call data from a third-party call tracking tool (CallRail, CallTrackingMetrics) into Google Ads via offline conversion import. For call-heavy businesses like healthcare and home services, option three provides the richest data.

Want Expert Help With Your Google Ads Tracking?

We audit your tracking setup, fix data gaps, and set up enhanced conversions. Accurate data is where better ROAS starts. Get a PPC Audit

Free Growth Audit
Call Now Get Free Audit →