0

I need to to set up goal in Google Analytic:-

Step 1: /PaymentAddress?prodID=171364

Step 2: /order-step3.php?prodID=171364

Step 3: /thank-you-page.php

Please suggest me how can i set up goal for these dynamic page urls.

Vikas K
  • 1
  • 2
  • Just use regex matching. Show us some effort and we can help guide you, also give more info on what parts are dynamic. – nyuen Oct 15 '16 at 15:32
  • Is this Correct:- Step 1: ^\/PaymentAddress\?prodID Step 2: ^\/order-step3\.php Step 3: Step 3: /thank-you-page.php – Vikas K Oct 17 '16 at 05:43

1 Answers1

0

You need to qualify the dynamic portions of the URLs:

Step 1: ^/PaymentAddress\?prodID=.*

Step 2: ^/order-step3.php\?prodID=.*

Step 3: ^/thank-you-page.php

nyuen
  • 8,829
  • 2
  • 21
  • 28
  • All right. is there any way to verify above regex matches are correct. Do i need implement this on Google Funnel path section> – Vikas K Oct 17 '16 at 06:10
  • Just verify in your real time reports after you set them up in your goal funnel. – nyuen Oct 17 '16 at 06:13
  • Product id is dynamic and change every time according to the selected product by user. for example – Vikas K Oct 17 '16 at 08:28
  • can you explain how can i use this on real time reports. actually i never do this before. – Vikas K Oct 17 '16 at 08:36
  • Sure, you need to configure your Goal from the View tab in the GA admin page, and then observe conversions through RT reports under Conversions. https://analytics.googleblog.com/2013/05/see-your-conversions-in-real-time.html – nyuen Oct 17 '16 at 15:10