FUNNELCOMPLETECOUNT
This section contains reference documentation for the FUNNELCOMPLETECOUNT function.
Last updated
Was this helpful?
This section contains reference documentation for the FUNNELCOMPLETECOUNT function.
Returns the count of entities that completed all steps in a funnel. This function is part of the funnel analysis family and counts only those entities (identified by the correlation column) that progressed through every defined funnel step.
FUNNELCOMPLETECOUNT(stepColumn, correlationColumn, settings, step1, step2, ...)
Parameters:
stepColumn
Column used to identify which step an event belongs to
correlationColumn
Column used to correlate events from the same entity (e.g., user ID)
settings
Configuration string for funnel behavior
step1, step2, ...
Boolean expressions defining each funnel step
select FUNNELCOMPLETECOUNT(
stepCol,
visitorId,
'',
url = '/home',
url = '/product',
url = '/checkout'
) AS completedCount
from eventTable1250
For more information on funnel analysis, see Funnel Count and Funnel Max Step.
Last updated
Was this helpful?
Was this helpful?

