How much revenue did we close from enterprise customers last quarter? Break it down by top accounts.
Galaxy closed $2.43M in revenue from enterprise accounts in Q4 2026 1, up 18.4% quarter-over-quarter 2.
This came from 12 enterprise customers 3, with the top three contributing 41% of the total:
- Atlas Technologies — $412K (17.0%)
- Vertex Solutions — $298K (12.3%)
- Acme Corporation — $287K (11.8%)
The tier classification is based on the customer.tier='enterprise' flag synced from Salesforce. Account names are shown in full because your role (Admin) has unmasked access — analysts would see partial company names.
SUM(order.total_usd) WHERE quarter = 'Q4 2026' Aggregated across 412 order records SUM(order.total_usd) WHERE quarter = 'Q3 2026' QoQ comparison baseline Customer ⨝ Order WHERE Customer.tier = 'enterprise' Joined via resolved customer_id SELECT customer.name, SUM(order.total_usd) AS revenue, COUNT(DISTINCT order.id) AS order_count FROM customer JOIN order ON order.customer_id = customer.id WHERE customer.tier = 'enterprise' AND order.created_at >= '2026-10-01' AND order.created_at < '2027-01-01' GROUP BY customer.id, customer.name ORDER BY revenue DESC LIMIT 100;
Which of those 12 customers have active sync errors right now?
2 of 12 enterprise customers currently have at least one source in a failed state 1:
- Acme Corporation — HubSpot connector: auth_token_expired, last successful sync 2h 14m ago
- Vertex Solutions — BigQuery connector: quota_exceeded, last successful sync 4h 47m ago
Both failures are upstream of the Customer LTV workbook and the Marketing → Reverse ETL sync to Hubspot. I can re-authenticate HubSpot or raise the BigQuery quota — want me to draft a ticket?
source.status = 'FAILED' WHERE source.customer_id IN (...) Joined active enterprise customers against sync state SELECT customer.name, source.label, source.last_error, age(now(), source.last_success_at) AS staleness FROM source JOIN customer ON source.customer_id = customer.id WHERE source.status = 'FAILED' AND customer.tier = 'enterprise' AND customer.id IN (:top_enterprise_ids) ORDER BY source.last_success_at ASC;