How to export more than 500 rows in new Google Analytics interface

19

Since the start of the new Google Analytics version (V5) we're unable to export more than 500 rows to for instance Excel. I figured there must be a solution to raise that number to 10.000 or more, so I started coding.

In the old Google Analytics there was the "&limit=10000" parameter that you could add to the export URL. In the new interface you can select the amount of rows below the table:

And after everything is loaded you can export those 500 with the usual export button.
Read more: How to export more than 500 rows in new Google Analytics interface »

Google Analytics event tracking not affecting bouncerate?

3

With the new release of ga.js this is possible. In the old days a fired event immediately after a trackPageview would cause Google Analytics to report a 0% bouncerate for that visit. But sometimes you don't want that behavior because the event is not always triggered by the visitor.

For instance: I track page load times the same way Google Analytics does, but in an unsampled way (Google only meausures 10%). To do that I fire an event immediately after the trackPageview, but I do that in another profile with a different UA-XXXX-Y number so it won't affect my bouncerates. But now we have an extra parameter:

_trackEvent(category, action, opt_label, opt_value, opt_noninteraction)

If you set this opt_noninteraction (boolean) to true it wil not affect bouncerates!!! That makes it possible to:
Read more: Google Analytics event tracking not affecting bouncerate? »

Google Analytics cleaned up Customvars but broke reports

1

A small blogpost about a new version of the ga.js file that was launched a week ago. As you can see they changed the way customvars are being reported:

"Fixed a bug in Custom Variables that caused some values to be encoded in reports."

Spaces (and other characters) were reported as "%20". So if my name was in a customvar it would look like this:
Read more: Google Analytics cleaned up Customvars but broke reports »

Adobe makes it easy to remove and block Flash cookies

0

Adobe is rolling out a new version of their Flash player (10.3) that makes it easy to remove and block your Flash cookies. In the old days (yesterday before my update) we had this menu (right-click on a Flash object):

But as of the new update we have an extra option. If you right-click on a Flash object you see this new option called "Global Settings" that brings you to this menu:

Read more: Adobe makes it easy to remove and block Flash cookies »

Track site speed / load time with Google Analytics events

30

In the rebound an article about the tracking of your site's performance with Google Analytics. Almost a year ago I wrote this article in Dutch, but there are some improvements that made life easier. Google Analytics released the 'set events as goals' functionality that is really helpful here.

The script I'm going to explain will track page load time and page render time per individual URL. I know some other articles that describe a comparing technique but I really think the way I use it gives you more insights (at least for smaller sites).

Sitespeed tracking is important

I don't have to tell you how important it is to know how visitors experience your site. Sluggish sites will cost you money in the end. Site speed is a minor SEO ranking factor and fast sites tend to have more pageviews per visit and a higher conversion rate.

Read more: Track site speed / load time with Google Analytics events »