This message was deleted.
# ask-questions
w
This message was deleted.
r
Hi Marius, in the SQL for the dimension you can query based on new/returning users based on their first­_seen date or any other data you have tracked that signifies new users VS returned users
This could be based on whether they have any activity before the start of the experiment. Here's an example of how you might structure this query:
SELECT user­_id, CASE WHEN first­_seen < experiment­_start­_time THEN 'returning' ELSE 'new' END AS user­_cohort FROM my­_table
In this example, ​`first­_seen`​ is the timestamp of the user's first activity, and ​`experiment­_start­_time`​ is the start time of the experiment.
c
Thank you Natasha! Will try these ones
🙏 1
122 Views