Activation Metric Planner

Make activation measurable by defining the simplest observable behavior that proves a trial user has reached the first win.

How to use it

What you get

Sample SQL formula

SELECT
  user_id,
  MIN(created_at) AS activation_date
FROM events
WHERE event_name = 'project_created'
GROUP BY 1
HAVING activation_date <= signup_date + INTERVAL '7 day';

Need the editable version? Email hello@crackerstack.com with the resource name and we’ll share the template.