Signed up
Learn how to check if a user has signed up.
This expression verifies whether the user has signed up based on Signed up events. Sign‑ups represent successful account creation.
Make sure your app is tracking the Signed up event before using this expression. Without this event, the expression will always evaluate to false.
Syntax
The basic syntax for this expression is:
user has signed up
The negation of the expression can be expressed as:
user has not signed up
You can refine the expression with quantifiers, and time windows:
user has signed up with /*<quantifier>*/ /*<window>*/
Parameters
These are the supported parameters:
- quantifier(optional)
A quantifier to specify how many times the sign up must have occurred.
- window(optional)
The time window during which the sign up must have occurred.
Event properties
This event does not have any specific properties for filtering.
Examples
You can check whether a user has signed up:
user has signed up
Or check if they have not:
user has not signed up
You can also check how many times a user has signed up:
user has signed up at least 2 times
You can even filter by time, such as checking if a sign‑up happened yesterday:
user has signed up yesterday
Combine quantifiers and time-based conditions:
user has signed up at least 2 times this month