Mobile app version of vmapp.org
Login or Join
Sarah324

: Setting up funnel URLs with regular expressions I'm trying to set up Google Analytics to track my e-commerce checkout page. The URLs in the process are as follows: /checkout/[order number] /checkout/[order

@Sarah324

Posted in: #Analytics #GoalTracking #GoogleAnalytics

I'm trying to set up Google Analytics to track my e-commerce checkout page. The URLs in the process are as follows:


/checkout/[order number]
/checkout/[order number]/your_details
/checkout/[order number]/review
/checkout/[order number]/complete


I've used the regular expression for the first page (/checkout/[order number]:

/checkout/d+


That works fine, however the problem is I'm struggling to work out what the regular expression should be for the other pages.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Sarah324

1 Comments

Sorted by latest first Latest Oldest Best

 

@Goswami781

These should work

/checkout/d+/your_details
/checkout/d+/review
/checkout/d+/complete


I got this from this forum post which helpfully says


To test this regular expression, go to the Top Content Report, scroll
to the bottom and enter the regular expression into the text box at
the bottom of the table.

See if the filtered results match only pages that you want to consider
a goal.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme