23 Jun 2020 02:24 PM
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 ?
Solved! Go to Solution.
23 Jun 2020 03:49 PM
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
09 Nov 2020 04:20 PM
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