• Home
  • Google Analytics
    • Customizations
    • For Ecommerce
  • Speaking
  • About
    • About Me
    • Contact Me
    • Disclaimer and Privacy Policy

Analytics Talk

Digital Analytics for Business

You are here: Home / Tips / Integrating Google Analytics With a CRM

Integrating Google Analytics With a CRM

Posted: October 29, 2007 61 Comments

20071025-gears.jpgA lot of people ask about integrating Google Analytics data with other types of data. Most people are interested in some type of CRM integration so that’s what I’m going to write about.

Let me start by saying that there is no API to Google Analytics. There is no formal way to pull data out and integrate it into some other application. Sure, there are some hacks out there to manipulate the report URLs but, in my opinion, this is a pretty big hack and I don’t recommend it to our clients.

When we talk about integrating Google Analytics with a CRM we’re talking about pulling information about the visitor’s originating source and sending it to a CRM system. We’re not going to pull the visitor’s entire history, just where they came from and attach it to other information that they enter into a form.

Why do this?

Happy Customers!Pulling a visitor’s source information is very helpful to a sales team. Image if a sales rep could identify how a sales lead found the website before picking up the phone and contacting them? Remember, a visitor’s source info describes how the visitor found the site. Did they respond to a specific email with a certain offer? Or did they come from search and, if so, what was the keyword they used? This type of info can help a sales team understand the intent of the prospect but where in the buying process they are. That makes life for the team a little easier.

So how do we connect a visitor’s source to a visitor?

Conceptual Overview

Google Analytics stores a visitor’s source data in a cookie. That cookie is named __utmz. The data can be extracted from the cookie and added to a lead generation form. When the visitor submits the form the source information is connected to the other information that the visitor entered into the form (usually her name and other contact information).

If the contact form is integrated with a CRM application, like SalesForce.com or NetSuite, it may be possible to store the marketing information with the individual’s contact information. Direct CRM integration depends on your CRM system. Some systems allow form fields to be pulled directly into the application. Check with your CRM provider for information about your specific system.

I would like to note that you don’t need to use some fancy CRM to take advantage of this technique. You can use the technique below even if your lead form generates an email or dumps the data into a database. The key is that we’re leveraging the data in the Google Analytics cookies and connecting it with information that the visitor sends you.

Detailed Instructions

Ok, so how do you actually do this? It takes some coding, either client side coding (JavaScript) or server side code (PHP, ColdFusion, .NET, Java, etc.). My example uses JavaScript. Here’s a basic explanation of what the code needs to do:

1. Extract the visitor’s source data from the __utmz cookie
2. Manipulate data as needed
3. Place data in hidden form fields

When the visitor submits the form the source data in the hidden form fields will be sent back to the server where it can be used.

The sample code below extracts the source information from the cookie and places it in some hidden form fields. Then, when the form is submitted the information is passed to the server.














Now, if this form is directly connected to a CRM then the data in the hidden form fields will go directly into the CRM along with other form info. That’s the magic. Again, you can use this method to collect source information even if the form is not connected to a CRM. Any type of lead generation form will be more valuable if you use this technique.

How The Code Works

When the above page loads in the browser the JavaScript starts to execute and extracts data from the cookies. First, it extracts the value of the __utmz cookie and stores it in a variable named z. Then it parses the z variable and looks for information about the visitor’s source. The __utmz cookie has a number of name-value pairs separated by a pipe (‘|’) character. Each name=value pair holds a different attribute of the visitor’s source. Here’s an example of the __utmz cookie.

12454562.1193706926.14.5.utmcsr=google|utmccn=(organic)|
utmcmd=organic|utmctr=google%2Banalytics%2Bshortcut

20071029-z.pngYou can see that the name value pairs look very similar to the parameters we use for link tagging. Just by looking at the above cookie you can figure out that the visitor performed an organic search on Google for the term ‘google%2Banalytics%2Bshortcut’ or ‘google analytics shortcut’. That’s the type of information that we want to put in hidden form fields and send back to the server. [You can learn more about the __utmz cookie in the reference section below.]

Getting back to the code, we were talking about how the code extracts the information from the z variable. It uses a function named _uGC(), which is found in the urchin.js JavaScript, to do all of the work. __uGC() extracts the value part of all the name-value pairs in the cookie. We call _uGC() for each name-value pair that exists in the cookie. It parses the cookie and pulls out the information that we want. [If you want to know more about _uGC() please see the reference section at the end of this post.]

Once the information is out of the z variable the populateHiddenFileds() functions puts the data in a series of hidden form fields. Then, when the form is submitted, the data is sent to the server.

You’ll notice a few things about the above code. I’ve added some logic to deal with AdWords auto-tagging. Auto tagging populates part of the cookie with a value named gclid. This variable hides some of the info that we need, like source and medium. The logic in the above code populates data that would otherwise be missing. I’ve also added some code that extracts the custom segment value which is stored in the __utmv cookie. I thought it would be useful to send this info back to the server as well.

Conclusion

Pulling visitor source data and connecting it with a visitor is very valuable. While your implementation will almost certainly be different, the concept illustrated above is the foundation for all implementations. Regardless of your implementation the business use for this data is fantastic.

Good luck!

20071029-reference.png

Reference

About the _uGC() Function

_uGC() takes three arguments:

_uGC(string, start-string, end-string)

• A string to search (target string)
• A start string
• An end string

The function will return the string between start string and end string. If the start string is not found then the function will return a dash (-).

About The _utmz Cookie

The __utmz cookie is the referral-tracking cookie. It tracks all referral information regardless of the referral medium or source. This means that all organic, CPC, campaign, or plain referral information is stored in the __utmz cookie. By default the cookie expires in six months, but that can be customized by changing the tracking code.

Cookie Format:


domain-hash.ctime.nsessions.nresponses.utmcsr= X(|utmccn=X|utmctr=X|utmcmd=X|utmci

Data about the referrer is stored in a number of name-value pairs, one for each attribute of the referral:

utmcsr
Identifies a search engine, newsletter name, or other source specified in the
utm_source query parameter See the “Marketing Campaign Tracking”
section for more information about query parameters.

utmccn
Stores the campaign name or value in the utm_campaign query parameter.

utmctr
Identifies the keywords used in an organic search or the value in the utm_term query parameter.

utmcmd
A campaign medium or value of utm_medium query parameter.

utmcct
Campaign content or the content of a particular ad (used for A/B testing)
The value from utm_content query parameter.

utmgclid
A unique identifier used when AdWords auto tagging is enabled This value
is reconciled during data processing with information from AdWords.

Filed Under: Tips, Tracking

Comments

  1. Kraig says

    October 29, 2007 at 11:36 pm

    Salesforce.com has built in visitor source (lead) tracking technology, an extension of the Google AdWords integration that is available to all salesforce customers. Find more information on the Salesforce for Google AdWords blog at: http://blogs.salesforce.com/adwords/2007/01/new_feature_upd.html

    Your Google Analytics integration script presents an interesting method of dissecting the analytics cookie. We will certainly have a look at your code and possibly package a solution for our users to take advantage of.

    Thanks,
    -Kraig

    Reply
  2. Justin says

    October 30, 2007 at 8:10 am

    Hi Kraig,

    Thanks for the information. I knew that there was some integration between AdWords and SalesForce, but I did not know the details. It looks like you guys have this integration thing wrapped up! :)

    The one great thing about the approach above is that it can be used with almost any type of lead generation form. You don’t need a CRM to collect and store the data. You could use an email or a simple text file.

    Thanks again for the information and for reading.

    Justin

    Thanks again for the comment and thanks for reading.

    Reply
  3. Tyson Kirksey says

    October 30, 2007 at 8:37 am

    Man, I just spent 6 hours last week writing this exact same functionality for our CRM!

    Great work, as always, Justin. I think your code is cleaner than mine, so I’ll borrow a few lines.

    Cheers,
    Tyson @ NMG

    Reply
  4. Justin says

    October 30, 2007 at 8:43 am

    Hey Tyson,

    Sorry I did not get this post out sooner! I’m glad you took the initiative to try this. Let me know how it works out.

    Thanks for reading and thanks for the feedback.

    Justin

    Reply
  5. Jeremy says

    October 31, 2007 at 12:45 am

    Haven’t had to deal with this one yet, but its good to know where to look in case I ever have to! I love the cookie/variable definitions at the end – great!

    Thanks Justin!

    Reply
  6. Ophir says

    October 31, 2007 at 9:34 am

    Hey Justin,

    Kudos for such an excellent article for GA power users.

    – Ophir

    Reply
  7. Tyson Kirksey says

    October 31, 2007 at 10:01 am

    Justin,

    In your code, if(gclid ==”-“) is always evaluating to true, meaning every visitor gets set to google(cpc). I’ve tried with multiple browsers and systems, all with the same result. Should it be != instead?

    Also, I prefer to pass this.id as the argument, and add the hidden fields dynamically using the form.appendChild() function. This eliminates having to add the form fields in the HTML, which means less manual edits. Just another option, I guess.

    Tyson

    Reply
  8. Justin says

    October 31, 2007 at 11:24 am

    Hi Tyson,

    Thanks for catching that. I copied an old version of the code that was incorrect. I’ve update the post to reflect the code.

    Also, thanks for the suggestion for improvements. I’m really glad that you’ve taken my idea and made it better! :) I am by no means the best programmer out there. My goal is to come up with some ideas, and have smarter people clean them up.

    Thanks for the feedback,

    Justin

    Reply
  9. Justin says

    October 31, 2007 at 11:25 am

    Ophir,

    Thanks! I’ve been reading your blog for a while and am flattered that you like the post.

    Thanks,

    Justin

    Reply
  10. Leslie Trosset says

    October 31, 2007 at 11:56 am

    Justin,
    I can’t thank you enough for writing about this subject! I can’t wait to get this implemented using our contact form.

    Also, you mention some good reasons for WHY someone would want this info which are all valid. Our biggest thing is knowing whether a banner ad or some other form of advertising works, so by including the source on the contact form, we’ll be able to track whether that lead converted to a sale. For us, it may only take one or two sales to know that the banner ad, etc. paid off and had a positive return on investment.

    Thanks again for the great post.

    Leslie

    Reply
  11. alex says

    November 3, 2007 at 5:45 pm

    Justin

    This is awesome code, we are using it on our site. However we still get quite a lot of visitors where it says “google | cpc | – “.

    Any ideas why this might be?

    Reply
  12. Blair says

    November 4, 2007 at 6:14 am

    Hello,
    Thanks for your post, it will be very useful. In trying to implement your code, I get the following error in Firefox/2.0.0.9:

    Error: syntax error
    Line: 243, Column: 38
    Source Code:
    csegment = csegment.match([1-9]*?\.(.*));

    I never really came to grips with regexps so would appreciate your help :)

    Thanks
    Blair

    Reply
  13. Justin says

    November 17, 2007 at 6:44 pm

    Hi Blair,

    There was a missing character that was causing the error in FF 2.0.0.9. Things should run smoothly now.

    Thanks for the heads up and thanks for reading the blog.

    Justin

    Reply
  14. Justin says

    November 17, 2007 at 8:16 pm

    Alex,

    The ‘-‘ is hsowing up in the term location, that means that there must be an issue with getting the term. The only thing I can think of is that this is what happens when there is traffic coming from the content network.

    Other than that, I would just double check to make sure the code is configured the right way.

    Thanks for reading and thanks for sharing your experience.

    Justin

    Reply
  15. Leslie Trosset says

    December 5, 2007 at 1:37 pm

    We tried it and can’t get the data to print on the form. Can anyone offer suggestions on what we are doing wrong? We are running coldfusion and we inserted the code Justin provided, but the fields are not getting populated on the emailed form.

    Tracking Data ========================================================================
    =========
    Source :
    Medium :
    Term :
    Content :
    Campaign :
    Segment :

    Reply
  16. Tom says

    January 9, 2008 at 10:23 am

    Hi Justin

    Yes this is a great function and we have been using it for over 2 years.

    Do you know if this will still work (uGC) if we switch to the new google analytics cookie ga.js

    Thanks

    Reply
  17. Justin Cutroni says

    January 11, 2008 at 11:14 am

    Hi Tom,

    Unfortunately, the new GA tracking code does not include the _uGC() function. If you switch to the new ga.js the best course of action is to manually add the _uGC function to your web pages.

    Hope that helps,

    Justin

    Reply
  18. hopeful says

    August 26, 2008 at 9:46 am

    hello all you smart people :D

    this may seem like a daft question but i was wondering if you could help anyway….

    having looked at my cookie files i have noticed multiple _utmz cookies, each from a different domain. how would this script react to that? would it read the values in all of the _utmz cookies??

    the reason i ask is because i want to read the contents of the _utmz cookie for my domain only.

    thanks ;)

    Reply
  19. Justin Cutroni says

    August 26, 2008 at 1:14 pm

    Hi Hopeful,

    The code should only pull the data from the cookies that are specific to your website. GA uses first party cookies which means that the code will only work on the __utmz cookies that were set by your site.

    All of the other __utmz cookies, which probably were set by other sites, will be ignored.

    “hopefully” that helps you out!

    Thanks for the question.

    Justin

    Reply
  20. Cailin Nelson says

    September 22, 2008 at 12:42 pm

    Hi Justin –

    How do you map the gclid with a particular campaign in your Adwords account? The gclid seem to be very long alpha-numeric strings. In my AdWords account, all my campaigns have nice human-readable names. If I hover over the link to a particular campaign in my Adwords account, I am able to identify a “campaignId” parameter, but this is a an 8-digit numeric value- which seems to have no correlation to the gclid.

    Thanks!
    Cailin.

    Reply
  21. hopeful says

    September 23, 2008 at 3:00 am

    Thanks Justin!

    Reply
  22. Justin Cutroni says

    September 23, 2008 at 8:21 am

    Hi Cailin,

    Unfortunately there is no way to map GCLID to an actual campaign or ad group. Google does the mapping when processing the data. The only we can discern from GCLID is that the visitor cam from a Google cpc ad.

    Also, as you point out, the campaignId parameter is not related to GCLID.

    Thanks for the question,

    Justin

    Reply
  23. Timothy says

    September 26, 2008 at 11:01 am

    Hi Justin,

    Great article. I have a question about the _uGC function. I couldn’t find any official documentation from Google about this function, so I’m afraid to use it in my code in the event that Google decides to rename it or remove it someday. Do you have any idea on how likely that is?

    Thanks.

    Reply
  24. Timothy says

    September 26, 2008 at 11:14 am

    Hi again,

    I have another comment. I wonder if there’s a mistake in your code above, specifically the 6 lines which use _uGC. It looks like they assume each key/value pair will be followed by a pipe “|” character, but I don’t think the trailing key/value pair is followed by a pipe.

    Thanks.

    Reply
  25. Justin Cutroni says

    September 29, 2008 at 8:28 am

    Hi Timothy,

    The _uGC function is in the urchin.js library, you should be able to find it in there. The last I checked it was still there. The pipe characters in the code are the delimiter values used in the utmz cookie to separate the various pieces of referral information.

    As always, if you have any concerns about this code working you should test it on your own development server. This post is meant to be a guide. Given all the different websites out there your implementation will almost certainly be different.

    Best of luck,

    Justin

    Reply
  26. vipul says

    October 10, 2008 at 12:30 am

    Hi,
    Thanks a lot for the post. I have a small doubt. We use Adwords a lot, so i want to know what are the exact searched query typed by the user. I am able to get that keyword in utmctr only for organic traffic but not for the paid search from any search engine. utmctr is not existing in case of paid search. What approach should i follow to get the data for paid search.

    Thank you
    Vipul

    Reply
  27. Nat Pierson says

    November 19, 2008 at 2:25 pm

    Justin,

    Your O’Reilly G.A. PDF book is a great resource. I’m glad to see the updated JavaScript here. We want to save Adword data that brought users to our site.

    Although it is clear how to get these __utmz cookie paramaters, it is still unclear to me what they really mean:

    * utmccn (campaign name) – Does not seem to match our Adword Campaigns in our testing (is either not set, organic, direct) What campaign is this?

    * utmcmd (campaign medium) – Usually is ‘not set’. What would be an example of data in this parameter?

    Thank you for the information you supply,
    Nat

    Reply
  28. Justin Cutroni says

    November 22, 2008 at 11:12 pm

    Hey Nat,

    Because AdWords is integrated with Analytics we don’t get all the usual PPC data in the utmz cookie. That’s why there is no value for campaign, medium and source.

    However, we do have a value called gclid. If this value is present in the cookie then we can force some of the other values, specifically source (to google) and medium (to cpc), to a value.

    To see some other values for source and medium check out the All Traffic Sources report. It lists all combinations of the source and medium values.

    Unfortunately we can’t get the campaign name when we’re collecting data from AdWords, that’s obscured by the auto-tagging feature. GA automatically pulls that value from AdWords during data processing.

    Hope that helps.

    Justin

    Reply
  29. Boris says

    December 25, 2008 at 11:15 am

    Excellent technique, we use it quite a lot. I posted an example of how it can work with the wufoo form building web app at http://www.borism.net/2008/12/24/integrating-google-analytics-and-wufoo/

    Rock on,
    – Boris

    Reply
  30. Justin Cutroni says

    February 11, 2009 at 3:23 pm

    Vipul,

    Capturing the exact search term can be challenging as GA passes the bid term. You would need to tweak the script to capture the exact search term. I think this is a great idea and I’ll add it in a newer version of the script.

    Thanks for the idea,

    Justin

    Reply
  31. michelle says

    February 17, 2009 at 11:11 pm

    This is great, exactly what I am looking for! We are using the ga.js tracking code. It sounds like we need to add extra code to all the pages for this to work with the _uGC() function? Can you confirm this and what exactly needs to be added and where in the code?

    Thanks!

    Reply
  32. Justin Cutroni says

    February 24, 2009 at 10:12 pm

    Hi Michelle,

    I’ll try to get the new code out ASAP in an updated post.

    Justin

    Reply
  33. Matt Trimmer says

    March 6, 2009 at 4:19 am

    Hi Justin,

    Hope you are well. Is there a new version of this for the new GA code?

    Also, when is there a new version of the book out?

    Reply
  34. Justin Cutroni says

    March 12, 2009 at 8:24 am

    Hey Matt,

    Great to hear from you. I hope all is well.

    I’m working on a new post and the book. I’m actually late on the book and the post :)

    Can you get me more than 24 hrs in a day?!

    Justin

    Reply
  35. James says

    September 21, 2009 at 3:37 pm

    Justin,

    Very useful post. I’ve been looking at the GA cookie and noticing that the ucmccn variable is getting set to organic even when someone comes to my site from an adword campaign. I don’t have conversion goals setup in analytics, but that shouldn’t affect the cookie right? Any ideas.

    Reply
  36. Gavin Doolan says

    September 24, 2009 at 11:36 am

    @Michelle – You can now do all this with the Google Analytics data export API, but the technique above is still valid.

    You could also just inspect urchin.js and rip out the function you need that allows you to read cookie values ;).

    This kind of insight is perfect for working out the lifetime value of a customer and getting true ROI for Google AdWords advertising and of course other mediums.

    Reply
  37. Leo says

    October 13, 2009 at 6:05 pm

    Hey Justin,

    Your O’Reilly Shortcut is great!

    For the “term” variable, I’ve used the “unescape” function before assigning it to the hidden input tag and I find the output more readable. Do you know of any unexpected errors this might cause?

    Reply
    • Justin Cutroni says

      October 20, 2009 at 9:32 pm

      Thanks Leo! The Short Cut is in dire need of an update, which is coming soon!

      Great idea adding an unescape. Off the top of my head I can’t think of any issues that it may cause. That’s a great addition!

      Justin

      Reply
  38. Taylor Miles says

    March 30, 2010 at 6:31 pm

    Does anyone have any insight into Server Side Scripting for Ruby? Would the Client Side Java Script work as well as a client side script?
    Will additional Java Scrip slow down site?

    Reply
    • Justin says

      March 31, 2010 at 6:47 am

      @Taylor: I’m not quite sure what you’re asking for re: Ruby. If you’re looking for Ruby help there are a number of great resources out there. Re: the JS slowing down the site, it is possible. But it all depends on your site, the server and the JS code. The code in this post is means to be an example. You should always create code that is compatible with your site.

      Best,

      Justin

      Reply
  39. Rick says

    June 24, 2010 at 9:43 am

    I use this script to send the cookie data from analytics via a form. It worked perfectly. Since last week it doenst work anymore. Does somebody know if something has changed the way the cookies are stored?

    Reply
    • Justin Cutroni says

      June 25, 2010 at 9:53 am

      Rick, there was a change to the GA.JS earlier this week. But the change was quickly reversed. I’ll update the block post to include more safeguards soon.

      Reply
  40. Karen Cayamanda says

    August 6, 2010 at 3:07 am

    great post, thanks a lot! ive been researching about analytics and crm then I found your post. :)

    Reply
  41. Tyrone Shum says

    June 10, 2011 at 2:58 am

    Hmm, this seems a great idea to get into. Well, on a different note since I hate coding myself, I’ll better be showing this to my web developer and he’ll go implement it. Thank you mate!

    Reply
  42. MikeTek says

    October 14, 2011 at 3:57 pm

    Excellent and helpful method/explanation.

    I was hoping to also pull the user’s Network (or ‘Service Provider’) and pass through such a form, but I can’t seem to find a Google Analytics cookie that stores this (though the data is collected/displayed in reports).

    Reply
  43. eirika says

    August 2, 2012 at 9:36 am

    hey justine!

    i wonder why the codes you posted cannot be seen on your article?
    i tried to save the whole page, thought that there’s a file attached to your article, but i didn’t find anything.
    i can’t find your codes. :(

    eirika

    Reply

Trackbacks

  1. Kirksey Solutions » Blog Archive » Using Google Analytics Cookies in Web Forms says:
    October 31, 2007 at 12:40 pm

    […] Justin from EpikOne wrote a great piece earlier this week explaining how to extract source, medium and campaign information from Google Analytics to insert in contact or lead forms. Essentially, it takes the data already stored about the visitor, and adds those values to hidden fields in the form. This means when your form submission comes through, it will contain valuable info about the visitor. Wouldn’t it be cool to get a lead email that looks like this: […]

    Reply
  2. Bloglinks der Woche (KW 44) | Webanalyse & SEO - News says:
    November 4, 2007 at 1:45 pm

    […] Integrating Google Analytics With a CRM (Analytics Talk) […]

    Reply
  3. Integrating Google Analytics and Wufoo at Boris Masis - Personal Homepage says:
    December 24, 2008 at 4:54 pm

    […] code is based on the original post at analytics talk, with some small modifications for […]

    Reply
  4. Web analytics, CRM, and more effective PPC and SEO | The blog of Adam Henige says:
    January 14, 2009 at 4:26 pm

    […] Surprisingly, integrating these data points isn’t nearly as difficult as it may seem.  Most analytics providers have a method worked out where you can pass along cookie data to your CRM system.  As Google Analytics is such a popular option, it’s worth checking out the fine work done by the folks at EpikOne to lay out exactly what needs to be done from a coding standpoint to get the Google cookies integrated into your CRM. […]

    Reply
  5. Guida passo a passo alla configurazione di Google Analytics | TSW Blog says:
    January 16, 2009 at 3:20 am

    […] per integrare i dati di Google Analytics con un sistema di Customer Relationship Management […]

    Reply
  6. Guida passo a passo alla configurazione di Google Analytics | [4]marketing.biz says:
    January 21, 2009 at 6:53 am

    […] per integrare i dati di Google Analytics con un sistema di Customer Relationship Management […]

    Reply
  7. UPDATED: Integrating Google Analytics with a CRM – Analytics Talk says:
    February 15, 2010 at 11:37 pm

    […] while back I wrote a post about how you can integrate Google Analytics with a CRM system. That posts referenced the old urchin.js code and is in need of an update. Plus a lot of people […]

    Reply
  8. Add Google Analytics Data to Zoho Web-to-Lead Forms | SwellPath | SwellPath Interactive says:
    February 16, 2011 at 11:09 am

    […] thanks to Art Wells who wrote this jQuery code, and Justin Cutroni; I directed Art to his post on integrating Google Analytics with a CRM to make this […]

    Reply
  9. Cool Trick: Insert Referrer Data From Google Analytics Into Your Lead Forms | Renegade Search says:
    March 23, 2011 at 4:04 pm

    […] pulls visitor referrer data out of Google Analytics and inserts it directly into your lead form.  (We originally found this tip on Analytics Talk). What does this mean?  When someone fills out the form on your site and you get a new lead with […]

    Reply
  10. Do you know where your leads are coming from? « Loopfuse Marketing Automation Blog – The Mouth of the Funnel says:
    April 5, 2012 at 1:56 pm

    […] some tips on how to actually do this from a great, albeit old, post from Justin Cutroni called Integrating Google Analytics With a CRM (for those of you who want to implement this, the post will give you almost everything you would […]

    Reply
  11. Google Analytics: GA在电子商务网站中的高级应用 - 肖庆的SEM博客 says:
    April 15, 2012 at 4:26 am

    […] 方法一:通过导入数据到CRM或者网站后台:http://cutroni.wpengine.com/2007/10/29/integrating-google-analytics-with-a-crm/ […]

    Reply
  12. How to Measure ROI for Lead-Gen Websites | Web Development, Search Engine Optimization, Social Media Marketing Guru says:
    May 20, 2013 at 12:35 pm

    […] you can see it is a treasure trove of information. It may look like ancient Greek, but there are multiple examples you can find online to learn how to read the GA cookie and add it to hidden form fields. […]

    Reply
  13. How to Measure ROI for Lead-Gen Websites | psudhir20 says:
    May 21, 2013 at 2:33 am

    […] you can see it is a treasure trove of information. It may look like ancient Greek, but there are multiple examples you can find online to learn how to read the GA cookie and add it to hidden form fields. […]

    Reply
  14. How to Measure ROI for Lead-Gen Websites – YouMoz | SEOmoz | CashOnlineBiz.com says:
    May 21, 2013 at 2:51 pm

    […] As you can see it is a treasure trove of information. It may look like ancient Greek, but there are multiple examples you can find online to learn how to read the GA cookie and add it to hidden form fields. […]

    Reply
  15. Cool Trick: Insert Referrer Data From Google Analytics Into Your Lead Forms | says:
    July 21, 2013 at 5:13 pm

    […] pulls visitor referrer data out of Google Analytics and inserts it directly into your lead form.  (We originally found this tip on Analytics Talk). What does this mean?  When someone fills out the form on your site and you get a new lead with […]

    Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

My Books

Google Analytics by Justin Cutroni
Learn More on Amazon.com

Performance Marketing co-authored by Justin Cutroni
Learn More on Amazon.com

Recent Posts

  • Understanding the Google Analytics Cohort Report
  • Using Offline and Online data to drive Google Analytics Remarketing
  • Understanding Cross Device Measurement and the User-ID
  • Universal Analytics: Now out of beta!
  • Advanced Content Tracking with Universal Analytics

Categories

  • About Google Analytics (25)
  • Analysis (52)
  • Analytics Strategy (3)
  • Campaign Tracking (14)
  • Ecommerce (8)
  • Event Tracking (10)
  • Remarketing (2)
  • Reporting (10)
  • Resources (7)
  • Tag Management (5)
  • Tips (25)
  • Tracking (52)
  • Uncategorized (64)
  • Universal Analytics (9)
  • Web Analytics (15)

Copyright © 2023 ·News Pro Theme · Genesis Framework by StudioPress · WordPress