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. 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 UA-XXXXXXX-2 UA-XXXXXXX-3 UA-XXXXXXX-4 Right now the GA code for each profile goes something like this: 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? I have tried searching for answers in Google forums, but i can't seem to find an answer how to create the new Roll Up Account. It was mentioned to me that i need to create a new GA account for that, but what domain will i placed? since for each new GA account i also need to place a domain. Thank you for the help...
It sounds to me like you need cross-domain tracking - this can be done over multiple domains or subdomains - more on that here - http://www.google.com/support/analytics/bin/answer.py?hl=en&answer=55503 http://code.google.com/apis/analytics/docs/tracking/gaTrackingSite.html