Mobile app version of vmapp.org
Login or Join
Sue5673885

: Changing default date range in Google Analyics? Is there a way to change the default date range of 31 days in GA? After changing it and clicking apply, only the current report changes? Next

@Sue5673885

Posted in: #Email #Google #GoogleAnalytics #Reporting

Is there a way to change the default date range of 31 days in GA? After changing it and clicking apply, only the current report changes? Next time I use GA, 31 days again???





Here is documentation on GA date range.

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Sue5673885

2 Comments

Sorted by latest first Latest Oldest Best

 

@Samaraweera270

There's no other way than using a bookmarklet (or browser plugin/extension). I tried the bookmarklet examples above, but none seemed to work for me.

The solution in the first link should work exactly like mine, but for some reason it doesn't. The other 2 links are outdated as Google Analytics URL structure has changed.

The "easiest" way I found to make a bookmarklet works like this:


Log in to your Google Analytics account
Look at the URL, it should be something like www.google.com/analytics/web/?hl=en&#home/a12345678w12345678p12345678/ Copy the last portion of the URL, in the example it's a12345678w12345678p12345678
Open a text editor, copy & paste this code on a new file you can call analytics.html

<html>
<head></head>
<body><a target="_blank" href="javascript:(function(){function d(a){a=String(a);a.length<2&&(a='0'+a);return a}var c=new Date,b='';b+=c.getFullYear();b+=d(c.getMonth()+1);b+=d(c.getDate());location.href='https://www.google.com/analytics/web/?#report/visitors-overview/a12345678w12345678p12345678/%3F_u.date00%3D'+b+'%26_u.date01%3D'+b+'/=';})();">Google Analytics</a>
</body>
</html>

Replace a12345678w12345678p12345678 in the file with the code you copied at step 3
Save the file and open it with your browser (tested with Chrome, Firefox and Safari on Mac OSX)
Drag the link to your bookmarks bar


Don't delete/move/rename the HTML file if you're using Chrome or Firefox, for some reason they need it even after you've added the bookmarklet.

10% popularity Vote Up Vote Down


 

@Heady270

Google Analytics allows you to set the default date range to the the last 7, 14, 28, or 30 days. You can access this setting from the User Settings which is found in the "Overflow Menu" (vertical three dots):



In addition, some people have noticed that if you bookmark a specific set of dates, those dates end up in the URL. Unfortunately, if you create a bookmark with a specific set of dates, those dates will be static and not change. You will never see new data.

However you can create a javascript bookmark (bookmarklet) that dynamically calculates the dates that should be in the URL and sends you to the URL. I have found three examples of this done for Google Analytics for this purpose.
whiletruecode.com/post/change-the-default-google-analytics-date-range-with-a-bookmarklet stackoverflow.com/questions/7509010/bookmark-with-date-in-the-url ratafia.info/post/70509179/bookmarklet-to-show-todays-stats-in-google-analytics
EDIT: Some of the above links are out of date (Google changed the URL format of dates in Analytics URLs at some point). I created a page that can on my site that can be bookmarked with your Google Analytics report id to get a wide variety of links for various time periods: ostermiller.org/calc/ga.html

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme