1

initialization: company website with product pages and separate ‘careers’ section.

I’m trying to create advanced segment with Google Analytics that would exclude visits that were more focused on careers section.

career URLs are simply:

  • /careers
  • /careers/job1
  • /careers/job2

I tried to use (two statements with AND operator):

‘Exclude’ ‘Page’ ‘Begins with’ ‘/careers’ 
AND
‘Exclude’ ‘Pageviews’ ‘Greater than’ ‘1’

Is this approach correct? Or do I get more reliable results if I use TimeOnPage instead of Pageviews? Example TimeOneSite greater than 15 sec.

4

1 回答 1

0

你可以试试这个:'Exclude' 'Page' 'Matching RegExp' '/careers.+$'

它应该排除主要职业页面之外的职业部分内的任何访问。

于 2012-08-17T19:48:03.837 回答