chirag@neondigital.media

Profile owner · ← all owners

Brands owned
12
Distinct users
1
Active days
23
Sessions
254
Active hours
3.63

Brands

BrandUsersSessionsActive hours
Neemans - AMS 1 174 2.56
USPOLO 1 33 0.40
Neeman's Private Limited 1 18 0.30
Glenmark Consumer Care 1 11 0.16
Arrow_1 1 4 0.06
GLENMARK_CONSUMER_CARE_LIMITED_self_serve_Brand - myntra_ads 1 2 0.04
Scalpe Pro_PO 1 2 0.03
Page_Industries_Ltd_self_serve_brand_jockey_Mjipl - myntra_ads 1 3 0.03
Neemans - seller 1 3 0.02
Allen Solly 1 2 0.02
ExclusiveLane 1 1 0.01
Page Industries Ltd_self-serve_brand_jockey_Mjipl 1 1 0.01
2 queries · scanned 10.88 MB · cost $0.000065 · 3.07s
Query 1 · 1 rows · 5.44 MB · $0.000032 · 1.68s
SELECT
  profile_owner_email,
  COUNT(DISTINCT brand_group) AS brands_owned,
  COUNT(DISTINCT email)       AS distinct_users,
  SUM(sessions)               AS sessions,
  ROUND(SUM(active_seconds)/3600.0, 2) AS active_hours,
  COUNT(DISTINCT day)         AS active_days
FROM `amazoneast.customerio_data.fact_sessions_daily`
WHERE LOWER(profile_owner_email) = LOWER('chirag@neondigital.media')
  AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY profile_owner_email
Query 2 · 12 rows · 5.44 MB · $0.000032 · 1.39s
SELECT brand_group,
       COUNT(DISTINCT email) AS distinct_users,
       SUM(sessions)         AS sessions,
       ROUND(SUM(active_seconds)/3600.0, 2) AS active_hours
FROM `amazoneast.customerio_data.fact_sessions_daily`
WHERE LOWER(profile_owner_email) = LOWER('chirag@neondigital.media')
  AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY brand_group
ORDER BY active_hours DESC