cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

USQL Funnel - not consecutive steps

MAkimov
Mentor

Good day!

I am setting up a funnel for registration of a user loan.

In the middle of the process, the user fills out a questionnaire (several data entry steps)

The user can skip from step to step - it is not necessary to fill them out sequentially.


Do I understand correctly that we will lose such users in our funnel?

Must all steps must be necessarily sequential in our USQL Funnel ?

2 REPLIES 2

JamesKitson
Dynatrace Guru
Dynatrace Guru

No, as of now order of occurrence is not taken into consideration in the funnels and it is up to the query writer to ensure they're in the right order. But as long as that action occurs then it will be reflected in the funnel.

Depending on how important that step is you could put them all into one logical step using 'OR' and then as long as one of them occurs in the session it would be reflected in the funnel.

select funnel(useraction.name = "/easytravel/rest/locations" or useraction.name="/easytravel/rest/journeys/", useraction.name="Loading of page /Booking") from usersession

Hi @James K.


Very interesting.

but what something like that dosen't work :


select funnel(useraction.name = "/easytravel/rest/locations" as 'Locations' or useraction.name="/easytravel/rest/journeys/" as "Step2", useraction.name="Loading of page /Booking" as "Booking") from usersession

Sharing Knowledge

Featured Posts