How to Track Google Ad Conversions
Tracking what happens after someone clicks your ad is the single most important part of running a successful Google Ads campaign. Without it, you’re just spending money in the dark, hoping something good comes from it. This guide will walk you through exactly how to set up Google Ads conversion tracking so you can see which ads actually drive results for your business.
Why Is Conversion Tracking So Important?
Setting up conversion tracking goes far beyond simply knowing whether an ad led to a sale. It unlocks the true power of the Google Ads platform, giving you the data you need to make smarter decisions and get a better return on your ad spend.
Here’s what you gain by properly tracking conversions:
- See Your True ROI: You can finally connect your ad spend directly to valuable business outcomes. Instead of just tracking clicks and impressions, you can see exactly which campaigns, ad groups, and keywords are generating leads and sales, allowing you to calculate your return on investment (ROI).
- Optimize Your Marketing Efforts: Conversion data tells you what’s working and what isn’t. You can identify your best-performing ads, keywords, and audience targeting. This allows you to pause the underperformers and double down on the winners, stretching your budget further.
- Unlock Smart Bidding: Google’s automated bidding strategies (like Target CPA or Maximize Conversions) rely entirely on conversion data to work. Without this data, the algorithm has no idea what you’re trying to achieve. Feeding it accurate conversion data lets Google’s AI find you more customers at your target cost.
- Understand the Customer Journey: Tracking conversions helps you piece together how customers interact with your business. You can see which ad they clicked before making a purchase or filling out a form, giving you valuable insight into their path from prospect to customer.
What Exactly is a "Conversion Action"?
Before diving into the setup, it’s helpful to define what a "conversion" is for your specific business. A conversion is any valuable action a user takes after interacting with your ad. It doesn’t always have to be a purchase.
Think about what you want users to do on your website. Here are some common examples of conversion actions:
- Purchases: The most common one for e-commerce stores.
- Form Submissions: When a user fills out a "Contact Us," "Request a Demo," or "Get a Quote" form.
- Newsletter Sign-ups: Capturing an email address for your mailing list.
- Phone Calls: Tracking calls made directly from your ads or by clicking a number on your website.
- Downloads: When a user downloads a piece of content like a PDF, case study, or whitepaper.
- Account Registrations: A user creating an account or starting a free trial for a SaaS product.
The key is to track the actions that are most meaningful to your business goals. For most businesses, it's best to start with one primary conversion action (like a "Lead" or "Purchase") and then add more as needed.
How to Set Up Your First Conversion Action
Ready to get started? We’ll begin inside your Google Ads account to create the conversion action first. After that, we’ll move on to adding the tracking code to your website.
Step 1: Navigate to the Conversions Section
Log in to your Google Ads account. In the top toolbar, click on Goals, and then select Conversions from the dropdown menu. This will take you to your Conversions summary page. Click the blue button that says + New conversion action.
Step 2: Choose Your Conversion Source
Google will ask you to select the kind of conversions you want to track. You have four main options:
- Website: Track actions on your website, like sales or lead form submissions. This is the most common option.
- App: If you have an app, you can track installs or in-app actions.
- Phone calls: Track calls from ads or calls to a number on your website.
- Import: Import conversion data from another source, like Google Analytics or your CRM (e.g., Salesforce).
This tutorial focuses on Website, an essential setup most businesses need.
Step 3: Scan Your Website and Create an Action
After selecting "Website," you'll be asked to enter your website domain (e.g., www.yourstore.com). Google will scan it to see if you have the Google tag installed.
Next, you’ll have the option to create a conversion automatically or manually. It’s better to choose + Add a conversion action manually to have full control over the setup.
Step 4: Configure Your Conversion Action Settings
Here you’ll define the details of the conversion. It’s important to get these settings right.
- Goal and Action Optimization: Choose a category that best fits your action. For a "contact us" form, you might select Submit lead form. For an e-commerce sale, you’d choose Purchase. This helps Google’s AI understand your goals.
- Conversion Name: Give it a clear, descriptive name like "Contact Form Submission" or "Ebook Download." This keeps your reporting organized.
- Value: Assign a monetary value to the conversion.
- Count: Tell Google how to count conversions.
After filling everything out, click Done at the bottom. Your conversion goal is now created, but you're not done yet. Now it's time to install the code on your website.
How to Install the Google Ads Tracking Tag
After creating your conversion goal, Google will provide you with the necessary code snippets (tags) to place on your website. They accomplish one main task: telling Google Ads when a conversion has occurred.
There are two primary methods for installing this Tag: using Google Tag Manager (recommended for most users) or adding the code directly to your website's HTML.
Method 1: Using Google Tag Manager (The Recommended Way)
Google Tag Manager (GTM) is a free tool that lets you manage and deploy marketing tags (like the Google Ads tag) on your website without having to modify the code. It keeps your site's code clean and makes future updates much easier.
First, make sure GTM is already installed on your website. If it is, follow these steps:
- Log in to your Google Tag Manager account and select your website's container.
- Click on Tags > New to create a new tag. Name it something clear, like "Google Ads - Lead Form Conversion".
- For the Tag Configuration, choose Google Ads Conversion Tracking as the tag type.
- Now, you'll need two pieces of information from Google Ads: the Conversion ID and the Conversion Label. You can find these by going back to Google Ads, clicking on the conversion action you just created, and clicking on the Tag setup instructions.
- Paste these ID and Label into the corresponding fields in GTM.
- Set up a Triggering condition to fire the tag. A common choice is to fire on a "Thank You" page — the page a user sees after they’ve filled out a form. Name your trigger "Thank You Page View". In the Trigger Configuration, select Page View and set conditions to fire your tag on a specific URL:
Page URL contains /thank-you. This tells GTM to fire the tag whenever anyone visits a URL containing/thank-you.
Lastly, save your trigger and your tag. Then click "Submit" in the upper-right corner to publish your changes.
Method 2: Adding the Tag to Your Website (The Direct Way)
If you're not comfortable using Google Tag Manager, you can add the tracking code directly to your site's HTML. This method requires editing the code.
Back in your Google Ads conversion setup, select "Use Google Tag". You'll see the code snippets:
- Global Site Tag
<script>: This snippet needs to be added to the header section of every page on your website. It installs a global tagging library that enables conversion tracking. - Event Snippet: The other snippet is placed only on the page where the conversion happens — for example, a “Thank You” page after form submission.
Here's a look at how they should look:
<!-- Global site tag (gtag.js) - Google Ads: A-123456789 -->
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-123456789"></script>
<script>
window.dataLayer = window.dataLayer || [],
function gtag(){dataLayer.push(arguments),}
gtag('js', new Date()),
gtag('config', 'AW-123456789'),
</script>
<!-- Event snippet for Contact Form Submission - Google Ads -->
<script>
function gtag_report_conversion(url) {
var callback = function () {
if (typeof(url) != 'undefined') {
window.location = url,
}
},
gtag('event', 'conversion', {
'send_to': 'AW-123456789/contact_page',
'event_callback': callback
}),
return false,
}
</script>Place the Global Site Tag code in the HTML section of every page and the Event Snippet in the HTML section for the page where the conversion happens. Installing these tags helps Google Ads collect conversion data accurately.
Utilizing Conversion Data to Improve Performance
Once conversion data is flowing in, you can begin to use it to optimize your campaigns and get a better ROI. Here are a few quick ways:
- Automated Bidding Strategies: With conversion data, Google can automatically optimize bids for your ads. Navigate to your campaign settings and click "Change bid strategy". Choose an option like "Target CPA" or "Maximize Conversions". This lets Google find more customers at your target cost.
- Refine Keywords and Ads: By reviewing your "Search terms" report, you can see what keywords triggered ads and drove conversions. Refine your keywords and adjust your ad copy to attract more conversions.
Final Thoughts
Setting up Google Ads conversion tracking is not just a technical task - it's a fundamental part of running any successful campaign. It enables you to understand what ads and keywords are actually generating leads, sales, and other valuable actions.
Once you have that data, the next challenge is to understand that data in context to your business needs. With the right tools, you can make informed decisions using Google Analytics, CRM, or Shopify store insights.
Instead of spending your budget on guesswork, you can use reliable analytical tools like a dashboard that shows you the output of your entire campaign, and how it's actually driving revenue. It's the fastest way to derive insights into your business.
Explore Graphed for getting your answers and insights consolidated instead of guessing.
Related Articles
What SEO Tools Work with Google Analytics?
Discover which SEO tools integrate seamlessly with Google Analytics to provide a comprehensive view of your site's performance. Optimize your SEO strategy now!
Looker Studio vs Metabase: Which BI Tool Actually Fits Your Team?
Looker Studio and Metabase both help you turn raw data into dashboards, but they take completely different approaches. This guide breaks down where each tool fits, what they are good at, and which one matches your actual workflow.
How to Create a Photo Album in Meta Business Suite
How to create a photo album in Meta Business Suite — step-by-step guide to organizing Facebook and Instagram photos into albums for your business page.