I'm attempting to do some careful analysis of the way my website's visitors move through two particular multi-page actions (e.g. event registration) in order to determine where and why some visitors don't complete the actions. I'm trying to use the Google Analytics "Visitors Flow" tool to examine the data, especially to find out where the "did not complete" visitors went next.
The difficulty I've run into is how the developers put together the URL structure in our MVC framework. Roughly speaking, the URLs look like this:
/contacts/432/edit /* create new person profile, [0-9]+ format for new person ID */
/event_orders/763/edit /* create new event reg, [0-9]+ format for new event registration */
/event_orders/763?success=true /* action completed */
Because of how the URLs are constructed, it's currently not possible to use the GA Visitor Flow analysis to view how site users move through the action sequence.
What I'm hoping for: I want to be able to define URL groupings by using regular expressions.
I know it's possible to use regular expressions when filtering page views, but I haven't found anything along those lines in the Visitors Flow section. If anything it looks as though I would need to define site-wide URL groupings in order to always treat /contacts/[0-9]+/edit as the same URL, thereby grouping the "create new event registration" page views into one chunk when viewing the Visitors Flow.
Is it possible to do this?
