Mobile app version of vmapp.org
Login or Join
Welton855

: Combine totals from two Google Analytics I have multiple websites in Google Analytics. I can see a summary from the home dashboard of each site. How can I combine the count from each site,

@Welton855

Posted in: #Analytics #GoogleAnalytics

I have multiple websites in Google Analytics. I can see a summary from the home dashboard of each site. How can I combine the count from each site, so I can see how many views, unique visitors, etc, across all sites.

More info: all sites are independent of each other, but are from the same company, we want to know (at a glance, without getting a calculator out) how many visits and visitors we are getting across all sites.

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Welton855

2 Comments

Sorted by latest first Latest Oldest Best

 

@Sherry384

It depends whether you are using older ga.js code or the new universal analytics (analytics.js).In the older code you can send data to 2 or more profiles simultaneously using this method:

var _gaq = _gaq || [];
_gaq.push(['_setAccount','UA-12345-6']);
_gaq.push(['_setAllowLinker',true]);
_gaq.push(['_trackPageview']);
_gaq.push(['ua2._setAccount','UA-34567-1']);
_gaq.push(['ua2._setAllowLinker',true]);
_gaq.push(['ua2._trackPageview']);


You can use the 12345-X UA codes for any individual site and have their own isolated data and use the 34567-1 code as a master code shared by all of your sites. Please note that if you wish to track traffic between the sites using the same UTM cookies you have to implement cross domain tracking.

If you are using universal analytics then you can use multiple trackers out of the box: developers.google.com/analytics/devguides/collection/analyticsjs/advanced#multipletrackers

10% popularity Vote Up Vote Down


 

@Annie201

See my answer on a similar question here webmasters.stackexchange.com/a/38395/10527

This document describes a variety of ways to collect visits to
multiple domains in a single view (profile)—as if they were a single
site rather than two separate ones. It also covers how to track
portions of a website, such as sub-directories and iFramed content. If
you are unfamiliar with the general process of cross-domain tracking,
see Domains and Directories in our Help Center.

developers.google.com/analytics/devguides/collection/gajs/gaTrackingSite

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme