How to remove/hide all Google Analytics data associated with a specific page?

12,803

Alex, unfortunately, there is nothing you can do about the historical data.

However, you can use simple filter to exclude pages you don't want to see (the filter field above the report table, not filters related to account/profiles) -- see the attached screen below.

enter image description here

Make sure you select exclude and then pick Page dimension. The easiest way would be to use regular expressions, like:

(a|b|c)

This one would remove any pages that contain either "a", or "b" or "c".

The expression would be probably a bit more complicated in your case and I suggest using tools like RegEx Hero (free, online). I am not sure if there is anything common for the pages you would like to remove from the reports, but regular expression can do quite a lot :).

One last thing -- be aware there is a slight difference in segments and (table) filters. If you use segments for page dimension, you would end up with ALL the pages that were seen during a visit, which includes the page you set in the segment. Might be a bit confusing, but see this article for detailed explanation.

Share:
12,803
Alex Lockwood
Author by

Alex Lockwood

Creator of Shape Shifter & Android Design Patterns I'm a recent graduate from Carnegie Mellon University with a strong interest in application frameworks, GUI toolkits, the Go Programming Language, and open-source software. I am currently an Android engineer at Lyft. Most of my time on StackOverflow is spent answering questions under the android, java, and golang tags. Sites Blog: androiddesignpatterns.com Google+: +AlexLockwood GitHub: @alexjlockwood Twitter: @alexjlockwood

Updated on June 05, 2022

Comments

  • Alex Lockwood
    Alex Lockwood almost 2 years

    For about a week, Google Analytics was erroneously reporting page views for a few request URIs, severely skewing my data. I have read that there is no way to remove data once it is reported. If this is the case, is there a way to simply hide this data from the view?

    I have tried a number of things (such as creating global filters, view filters, etc.) to no avail. Using segments also doesn't work, because apparently you can only filter out visits/users (whereas my goal is to filter out page views associated with a specific page). At this point, I feel like I must be going about it the totally wrong way...

    Below is a screenshot of the Behavior > Overview section. The page views I want to move are #1, #2, and #5.

    enter image description here