Note: Please see the updated Ultimate Guide to Universal Analytics Integration with Salesforce. You have several tools and channels: Paid Campaigns (Google Adwords), Google Analytics and Salesforce. All are robust and tell you different details about the behavior of your leads/prospects. Google Analytics has an overall view about your visitors (qualified and unqualified leads), while Salesforce has detail about each individual lead. Until now, these views are looked at separately. Wouldn’t it be powerful to be able to combine them into one comprehensive full 360 view of your leads? To be able to find out where they went, how they converted, then optimize for that conversion to get more leads??? The only code for Salesforce integration that existed used to be for Google AdWords. Even that has since been retired as of May 1, 2013 (read more about it here). In this post, we hope to provide code that integrates Salesforce and Google Analytics, which not only replaces the Adwords integration, but will work with any of your marketing channels and campaigns.
Why Integrate Salesforce with Google Analytics?
Google Analytics has very rich reporting capabilities for conversion tracking. For example, you can define a goal by simply identifying a unique URL of the thank you page for any form on your website. And if one doesn’t exist, you can even “fake it” by creating virtual pageviews or events. This will allow you to analyze the number of conversions you receive, where they came from, and other user behaviors about visitors who convert. Salesforce is “the name” in sales funnel reporting. Each time a lead submits information through forms on your website, through integration with Salesforce (or through manual entry from your sales representatives) other information about the leads can be entered and tracked. But both tools alone might have missing pieces. In Google Analytics, how many of my conversions are spam or unqualified leads? In Salesforce, what information or pages were my leads looking at that got them to convert? Are search engines a primary source of converting traffic? Etc. Google Analytics and Salesforce each have a place in helping analyze how to improve your sales funnels and the quality and quantity of your leads. Combining the two can really give you powerful insights to act upon. In this post, we’ll show you how to pass Google Analytics information to Salesforce, then cover advanced integrations, such as passing unique keys that will allow you to tie visitors between Google Analytics and Salesforce. From there, you can get “first touch” campaign information.Implementation (The Code)
The code below will allow you to improve your reporting by passing the traffic source information into Salesforce every time a form is submitted.- Setup the following 5 fields in Salesforce:
- Medium
- Source
- Campaign
- Content
- Term
< input id="xxxxxxx" name="txt_medium" type="hidden" value="" /> < input id="xxxxxxx" name="txt_source" type="hidden" value="" /> < input id="xxxxxxx" name="txt_campaign_name" type="hidden" value="" /> < input id="xxxxxxx" name="txt_term" type="hidden" value="" /> < input id="xxxxxxx" name="txt_content" type="hidden" value="" />
- Update all forms to contain the same 5 fields created in step 1 (they should be hidden so they aren’t shown to the user).
- Values for the hidden fields can be read from the GA cookie __utmz. The code below will parse out the campaign variables from the GA cookies and make them available in 5 variables.
- Logic should be put in place within the form to pass the values of the hidden fields to their corresponding fields within Salesforce when the form is submitted.
- Place the following code on every page on your website that has a Salesforce form before the closing tag.
< script type="text/javascript"> var z = _uGC(document.cookie, '__utmz=', ';'); var source = _uGC(z, 'utmcsr=', '|'); var medium = _uGC(z, 'utmcmd=', '|'); var term = _uGC(z, 'utmctr=', '|'); var content = _uGC(z, 'utmcct=', '|'); var campaign = _uGC(z, 'utmccn=', '|'); var gclid = _uGC(z, 'utmgclid=', '|'); if (gclid !="-") { source = 'google'; medium = 'cpc'; } var csegment = _uGC(document.cookie, '__utmv=', ';'); if (csegment != '-') { var csegmentex = /[1-9]*?\.(.*)/; csegment = csegment.match(csegmentex); csegment = csegment[1]; } else { csegment = ''; } function _uGC(l,n,s) { if (!l || l=="" || !n || n=="" || !s || s=="") return "-"; var i,i2,i3,c="-"; i=l.indexOf(n); i3=n.indexOf("=")+1; if (i > -1) { i2=l.indexOf(s,i); if (i2 < 0){ i2=l.length; } c=l.substring((i+i3),i2); } return c; } document.getElementById("txt_medium").value =medium; /* Campaign_Medium */ document.getElementById("txt_source").value =source; /* Campaign_Source */ document.getElementById("txt_campaign_name").value =campaign; /* Campaign_CampaignName */ document.getElementById("txt_term").value =term; /* Campaign_Term */ document.getElementById("txt_content").value =content; /* Campaign_Content */ < /script>After implementing this code you can test one of the forms on your site and this is what you should see in Salesforce:
Success
Congratulations! You are now pulling reports in Salesforce and accurately determine what traffic sources are resulting in opportunities, qualified leads, and customers. Now you have a more accurate understanding of the true ROI of your marketing activities. (Keep in mind that when testing to clear your cache, cause any previous cookies or tags associated with your site will reflect in the form submission.) The following is a report we have helped many of our customers work towards, which is mapping their Salesforce lead/customer data to their advertising spend. This report shows the ROI and cost per qualified lead for each of their marketing channels.A Note About Autotagging/AdWords
If you are trying to analyze the impact of your AdWords campaigns, you may notice that in Salesforce all of the Keywords, Content, and Campaign information is missing. This will happen if you have AdWords set to use autotagging. If this is the case, the default implementation provided above will not be able to pass anything more detailed, because the AdWords information is hidden in the GCLID, which is not decoded until later in Google Analytics. If this information is important you have two options:- You can disable autotagging and use manual tagging
- You can customize our code to accept customer parameters, which you can append to all of your destination URLS.