Hi All,
Please help, I need your opinions regarding creating a Roll Up Account for different profiles.
Currently the set up of our Google Analytics is Each GA Account has 4 profiles in it, each profile is a different domain. It is very hard to manage because we need to get the data per profile and add it up to get the Total data for the whole account.
Like this.
Account 1: has the following profiles:
UA-XXXXXXX-1 - domain1.com
UA-XXXXXXX-2 - domain2.com
UA-XXXXXXX-3 - domain3.com
UA-XXXXXXX-4 - domain4.com
Right now the GA code for each profile goes something like this:
Quote:
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXX-1']);
_gaq.push(['_setDomainName', '.domain1.com']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
|
Is there any code or any way that i can do to create a New Account or New Profile that would sum up all data from each profile?
Thank you for the help... 
|