Reputation: 16226
With a Funnel you can determine whether users navigated a certain path to some destination page. Is there a way to determine if users ever got from page A to page B regardless of which and how many pages they hit in between?
Upvotes: 1
Views: 74
Reputation: 1712
An advanced segment would tell you this:
Include visits that saw page A AND page B, you'll get a subset of visits and can compare their behavior, performance, etc... to the rest of the visits.
No programming, dynamic and applies to past data.
Upvotes: 0
Reputation: 16538
Well you could setup a profile that filters all other pages besides A and B out, therefore the profile only reports on page A and page B, then you would be able to see if traffic that saw page A, later saw page B.
If you want do a little js programming, then you could also use a custom variable, set it to 1 when a visitor sees page A, then set it to 2 if a visitor sees page A and they had the custom variable set to 1 already.
Upvotes: 1