alex@vandorgroup.com
Profile owner · ← all owners
Brands owned
16
Distinct users
4
Active days
17
Sessions
176
Active hours
1.85
Brands
| Brand | Users | Sessions | Active hours |
|---|---|---|---|
| InSimple Living | 4 | 37 | 0.47 |
| Blissy Brand | 1 | 16 | 0.27 |
| WrenchIt | 2 | 18 | 0.23 |
| Factory Standard AMS | 1 | 15 | 0.19 |
| Amadurra | 2 | 15 | 0.15 |
| GWA Auto Parts | 1 | 11 | 0.11 |
| Caden Lane Baby | 1 | 18 | 0.10 |
| PureGrubs | 1 | 8 | 0.07 |
| BÆRSkin Tactical Supply Co. | 2 | 5 | 0.06 |
| DALT Brands INC | 1 | 6 | 0.06 |
| Amazing Parts Warehouse | 2 | 12 | 0.05 |
| Great River Milling | 1 | 6 | 0.05 |
| LJ Distribution | 1 | 4 | 0.02 |
| Fern and Willow | 2 | 3 | 0.01 |
| Simply Gourmet Products | 1 | 1 | 0.00 |
| ESStuff | 1 | 1 | 0.00 |
2 queries · scanned 10.87 MB · cost $0.000065 · 3.53s
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('alex@vandorgroup.com')
AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY profile_owner_email
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('alex@vandorgroup.com')
AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY brand_group
ORDER BY active_hours DESC