Mobile app version of vmapp.org
Login or Join
LarsenBagley505

: Why is the query string in my funnel step ignored? I have two goals, one have a funnel step like: /site/folder/ and the other is /site/folder/?id=true However, the goals treats the steps as

@LarsenBagley505

Posted in: #GoogleAnalytics

I have two goals, one have a funnel step like:

/site/folder/


and the other is

/site/folder/?id=true


However, the goals treats the steps as identical, so I don't get distinct results.



How do I get the step to recognize the query string as being different?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @LarsenBagley505

1 Comments

Sorted by latest first Latest Oldest Best

 

@Megan663

Try using a regex match instead, so if your first goal step 1 is on /site/folder/ and your second step 1 is on /site/folder/?query=something, then use Regex:

Goal 1, Step 1:
Regex: ^/site/folder/$

Goal 1, Destination:
Regex: ^/some/other/stuff$

Goal 2, Step 1:
Regex: ^/site/folder/?query=.*$

Goal 2, Destination (same as for Goal 1):
Regex: ^/some/other/stuff$

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme